作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用之前创建的变量定义的 x
、y
和 size
输入此代码。问题是这些点太聚集了,我想拉伸(stretch)我的 y 轴。
plt.scatter(rets.mean(),rets.std(),s = area)
plt.xlabel('Expected Return')
plt.ylabel('Risk')
例如,现在我的 y 轴从 -0.005
到 0.04
,增量为 0.005
,我该如何调整它以 0.0025
为增量进行计数?
最佳答案
import matplotlib.pyplot as plt
import matplotlib.ticker as mticks
fig, ax = plt.subplots()
ax.set_ylim((-.005, .04))
ax.yaxis.set_major_locator(mticks.MultipleLocator(.0025))
关于python - 我不知道如何在 Python 中分散散点图 y 轴上的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32040304/
我是一名优秀的程序员,十分优秀!