根据日期和时间,我有 2 列用于光和加速度计读数。我想将它们绘制在一张图中,显示 y 轴左侧的光和 y 轴右侧的加速度计。我使用 twinx 函数来绘制它们。
for d in list_days:
new_data=df_combined[df_combined['Day']==d]
fig,ax1=plt.subplots(figsize=[17,4])
color = 'tab:red'
ax1.plot(new_data['Time'], new_data['Lux_Value'], color=color)
ax1.set_xlabel('Time')
ax1.set_ylabel('Lux Value', color=color)
ax1.tick_params(axis='y', labelcolor=color)
ax2 = ax1.twinx()
color = 'tab:blue'
ax2.plot(new_data['Time'], new_data['Movement_Value'], color=color)
ax2.set_ylabel('Movement Value', color=color)
ax2.tick_params(axis='y', labelcolor=color)
plt.title('{}-June-2021'.format(d))
fig.tight_layout()
plt.show()
但是,绘制的数据看起来并不好。我想知道是否有任何方法可以使用像 resample 函数来使它更好。