这是我放置解析数据的要点的链接: https://gist.github.com/Zahra-on-Github/1fd974e5b838251aa87969c6877a5058
使用 Seaborn 的 relplot 函数,我绘制了这些数据并附上了图:
sns.relplot(
data=pupil_data_in_trial_mean_eye,
x='pupil_timestamp',
y='diameter_3d_mean',
hue='trial',
kind='line',
aspect=3,
)
all the trials following each other
如果我想在彼此之上绘制试验,我该怎么办? 我不介意情节的不同长度,他们只需要从 0 开始并在彼此之上绘制。