如何找到图形的斜率
这是我的代码:
import matplotlib.pyplot as plt
plt.loglog(length,time,'--')
其中长度和时间是列表。
如何找到该图的线性拟合斜率?
Here is my code:
import matplotlib.pyplot as plt
plt.loglog(length,time,'--')
where length and time are lists.
How do I find the linear fit slope of this graph?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有 matplotlib,那么您还必须安装 numpy,因为它是一个依赖项。因此,您可以使用 numpy.polyfit 求斜率:
If you have matplotlib then you must also have numpy installed since it is a dependency. Therefore, you could use numpy.polyfit to find the slope:
您需要利用 np.array 将列表更改为数组,然后进行其他计算:
You need to take advantage of np.array to change your list to an array, then do the other calculations: