我经常发现自己想要在另一列中绘制数据,但发现很难将它们分组/分成第3列。
假设我有一张这样的表
我如何在熊猫中创建相同的情节?
BTW:我喜欢x轴是线性的,而不仅仅是彼此相邻的日期组,因为它给出并了解了一组内测量结果的接近程度 - 但是很高兴知道如果距离太远,如何做到两者。@Ffisegydd的回答非常有用。但是我接受答案时有点太快了 - 我发现在实际的excel表上试用代码时。问题完全是我的错,因为我没有提供Excel表格。 @Ffisegydd非常友好地从我的问题手动创建数据框,但使用excel文件有点不同。
我做得很好。这是一个Excel文件: https://dl.dropboxusercontent.com/u/3216968/Example.xlsx
这是我有多远(在IPython笔记本中)
import pandas as pd
import datetime as dt
path2file = r"C:\Example.xlsx"
_xl = pd.ExcelFile(path2file)
df = pd.read_excel(path2file, _xl.sheet_names[0], header=0)
df
df.Date = df.Date.apply( lambda x: dt.datetime.strptime(x, '%Y.%m.%d').date() )
df
以下是出错的地方:
pd.DataFrame( data= [df.Data, df.Group], columns = ['Data', 'Group'], index=df.Date)
给出此错误
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-9-231baa928f67> in <module>()
----> 1 pd.DataFrame( data= [df.Data, df.Group], columns = ['Data', 'Group'], index=df.Date)
C:\Python27\lib\site-packages\pandas\core\frame.pyc in __init__(self, data, index, columns, dtype, copy)
245 index = _default_index(len(data))
246 mgr = _arrays_to_mgr(arrays, columns, index, columns,
--> 247 dtype=dtype)
248 else:
249 mgr = self._init_ndarray(data, index, columns, dtype=dtype,
C:\Python27\lib\site-packages\pandas\core\frame.pyc in _arrays_to_mgr(arrays, arr_names, index, columns, dtype)
4471 axes = [_ensure_index(columns), _ensure_index(index)]
4472
-> 4473 return create_block_manager_from_arrays(arrays, arr_names, axes)
4474
4475
C:\Python27\lib\site-packages\pandas\core\internals.pyc in create_block_manager_from_arrays(arrays, names, axes)
3757 return mgr
3758 except (ValueError) as e:
-> 3759 construction_error(len(arrays), arrays[0].shape[1:], axes, e)
3760
3761
C:\Python27\lib\site-packages\pandas\core\internals.pyc in construction_error(tot_items, block_shape, axes, e)
3729 raise e
3730 raise ValueError("Shape of passed values is {0}, indices imply {1}".format(
-> 3731 passed,implied))
3732
3733 def create_block_manager_from_blocks(blocks, axes):
ValueError: Shape of passed values is (2,), indices imply (2, 12)
或者这样做
pd.DataFrame( {'data': df.Data, 'group': df.Group}, index=df.Date)
答案 0 :(得分:3)
您可以创建一个groupby
对象,然后迭代组和绘图。
下面是一些代码,它会记录您的数据并绘制两个&#34;组&#34;。还有一些额外的格式可以使图表看起来很好。
import matplotlib.pyplot as plt
import pandas as pd
import datetime as dt
path2file = r"Example.xlsx"
_xl = pd.ExcelFile(path2file)
df = pd.read_excel(path2file, _xl.sheet_names[0], header=0)
df.Date = df.Date.apply( lambda x: dt.datetime.strptime(x, '%Y.%m.%d').date())
df.index = df.Date # Set the Date column as your index
del df['Date'] # Remove the Date column from your data columns
grouped = df.groupby('Group') # groupby object
# Normally you would just iterate using "for k, g in grouped:" but the i
# is necessary for selecting a color.
colors = ['red', 'blue']
for i, (k, g) in enumerate(grouped):
plt.plot_date(g['Data'].index, g['Data'], linestyle='None', marker='o', mfc=colors[i], label=k)
plt.legend()
plt.gcf().autofmt_xdate() # Format the dates with a diagonal slant to make them fit.
# Pad the data out so all markers can be seen.
pad = dt.timedelta(days=7)
plt.xlim((min(df.index)-pad, max(df.index)+pad))
plt.ylim(0,6)
答案 1 :(得分:1)
这应该有效
df.pivot_table(rows=['Date'], cols=['Group'], values=['Data']).plot()
但请注意,每个数据点将是特定组中特定组中数据点的“平均值”