def fun3(data): data = pd.read_csv(data) data['date_time'] = pd.to_datetime(data['date_time']) data1 = data.loc[:, ['date_time', 'Global_active_power']] data1.set_index('date_time', inplace=True) fig = plt.figure(figsize=(22, 20)) fig.subplots_adjust(hspace=1) ax1 = fig.add_subplot(5, 1, 1) ax1.plot(data1['Global_active_power'].resample('D').mean(), linewidth=1) ax1.set_title('Mean Global active power resampled over day') ax1.tick_params(axis='both', which='major') ax2 = fig.add_subplot(5, 1, 2, sharex=ax1) ax2.plot(data1['Global_active_power'].resample('W').mean(), linewidth=1) ax2.set_title('Mean Global active power resampled over week') ax2.tick_params(axis='both', which='major') ax3 = fig.add_subplot(5, 1, 3, sharex=ax1) ax3.plot(data1['Global_active_power'].resample('M').mean(), linewidth=1) ax3.set_title('Mean Global active power resampled over month') ax3.tick_params(axis='both', which='major') ax4 = fig.add_subplot(5, 1, 4, sharex=ax1) ax4.plot(data1['Global_active_power'].resample('Q').mean(), linewidth=1) ax4.set_title('Mean Global active power resampled over quarter') ax4.tick_params(axis='both', which='major') ax5 = fig.add_subplot(5, 1, 5, sharex=ax1) ax5.plot(data1['Global_active_power'].resample('A').mean(), linewidth=1) ax5.set_title('Mean Global active power resampled over year') ax5.tick_params(axis='both', which='major')
时间: 2024-01-01 11:03:40 浏览: 69
python中时间转换datetime和pd.to_datetime详析
这是一个Python函数,功能是读取CSV文件并绘制该文件中日期时间和Global_active_power的多个时间段内的平均值。其中,第一部分是将CSV文件读入并将date_time列转换为日期时间格式,第二部分是选择date_time和Global_active_power两列数据并将date_time列设置为索引。接下来通过resample函数将数据按照不同的时间段进行重采样,并计算各时间段内Global_active_power的平均值。最后使用subplot函数将多个子图绘制在一张大图中,并设置各子图的标题和轴标签。
阅读全文