我需要帮助,我想用
pandas.dataframe.plot(kind='scatter' , x=x , y=y )
对于字典类型('2022 -01- 30':50,“2022年1月31日”:152,“2022年2月1日”:四十一
我需要一个标题,请问我怎么用字典呢
它给了我error x is not defined
x is the key
和y is the value
但在图表中,x应为“日期”,y应为“数量”
我需要帮助,我想用
pandas.dataframe.plot(kind='scatter' , x=x , y=y )
对于字典类型('2022 -01- 30':50,“2022年1月31日”:152,“2022年2月1日”:四十一
我需要一个标题,请问我怎么用字典呢
它给了我error x is not defined
x is the key
和y is the value
但在图表中,x应为“日期”,y应为“数量”
3条答案
按热度按时间kqhtkvqz1#
您必须先创建一个DataFrame:
输出:
zujrkrfu2#
你不能用dataframe函数来绘制dict类型,因此有两种可能性:
matplotlib.pyplot.scatter
)pd.DataFrame.from_dict(data)
将字典转换为 Dataframe ,然后使用pandas.DataFrame.plot.scatter(x=x, y=y)
6gpjuf903#
只需取出键和值