在大熊猫中绘制有意义的图

时间:2019-05-17 06:00:48

标签: python pandas dataframe matplotlib

我想绘制图形以查看电池电压如何受输出电流影响。我有使用电池的设备的使用情况数据。当输出电流为零时,电池电压不应下降。这是我要检查的。我有不同时间间隔的10个日期的数据。我想每天显示出一种模式。我仅附上一张看起来与实际数据相似的示例数据。

enter image description here

到目前为止的结果

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

import numpy
import matplotlib.pyplot as plt
import pandas as pd

#read data from pandas into a numpy array
#assume this is our dataframe
df = pd.DataFrame({'age':    [ 3,  29, 30],
                    'height': [94, 170,200]})

#reshape data
m = df.values
m = m[:,::-1].transpose()

#plot the graph
plt.scatter(m[0], m[1])
plt.plot(m[0], m[1], '-')
plt.show()