我是Pythion的新手,我想简单地知道如何使用plot函数将下面代码产生的一系列数据绘制在图形中?
我希望x轴是some_function的结果,而y轴是t1的结果。
这是一项作业,我只能使用plot,而不能使用matplotlib,因为我们没有被教过。
谢谢
from pylab import *
def some_function(ff, dd):
if dd >=0 and dd <=300:
tt = (22/-90)*ff+24
elif dd >=300 and dd <=1000:
st = (22/-90)*(ff)+24
gg = (st-2)/-800
tt = gg*dd+(gg*-1000+2)
else:
tt = 2.0
return tt
t1=arange(0,12000,1000)
print(t1)
for x in t1:
print(some_function(55,x))
答案 0 :(得分:1)
不确定是要散点图还是线图,所以我同时提供了这两个选项。
from pylab import *
import matplotlib.pyplot as plt
def some_function(ff, dd):
if dd >=0 and dd <=300:
tt = (22/-90)*ff+24
elif dd >=300 and dd <=1000:
st = (22/-90)*(ff)+24
gg = (st-2)/-800
tt = gg*dd+(gg*-1000+2)
else:
tt = 2.0
return tt
t1=arange(0,12000,1000)
x_data = [some_function(55,x) for x in t1]
y_data = t1
# Scatter plot
plt.scatter(x_data, y_data)
# Line plot
plt.plot(x_data, y_data)
plt.show()
#Optionally, you can save the figure to a file.
plt.savefig("my_plot.png")
如果您确实不能直接使用matplotlib
,请运行:
# Scatter plot
scatter(x_data, y_data)
# Line plot
plot(x_data, y_data)
show()
savefig('my_plot.png')