gpt4 book ai didi

python - 如何均匀地间隔数据框中的日期数据?

转载 作者:行者123 更新时间:2023-12-01 04:37:38 25 4
gpt4 key购买 nike

我有一个实验测量数据框。

enter image description here

我可以使用 pandas 轻松地绘制数据框中的数据。这是结果。 enter image description here

日期在轴上均匀分布,但实际上,它们并不是均匀分布的。如何准确表示测量之间的时间?

这是我绘制数据框的代码:

import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

normal_df= pd.DataFrame(normal, columns = cols, index = rows[2::])
print normal_df

#Write the data frame to an xlsx file

normal_df.to_excel(csv_file[0:-4] + '_Normalized_Survival.xlsx')

avg = normal_df.mean()

errors = normal_df.sem()

avg.plot(marker = 'v',yerr = errors)
plt.title('Mean Survival with Standard Error',fontsize = 20)
plt.xticks(fontsize = 12,rotation = 45)
plt.yticks(fontsize = 12)
plt.xlabel('Time',fontsize = 18)
plt.ylabel('% Survival',fontsize = 18)
plt.xlim([0,6.1])
plt.legend(['Survival'])
plt.show()

最佳答案

您可以尝试以下一个选项,即执行字符串操作来提取整数 Day 并将索引设置为结果值

In [10]: cpy = [100, 89, 84, 73, 65, 6, 0]

In [11]: days = ['Day 1','Day 2','Day 3','Day 6','Day 9','Day 14','Day 16']

In [12]: df = pd.DataFrame({'day':days,'val':cpy})

In [13]: df['dayint'] = df.day.apply(lambda x : int(x.split(' ')[-1]))

In [14]: df.set_index(df.dayint, inplace=True)

In [15]: df.val.plot()

In [16]: plt.show()

Example Plot

关于python - 如何均匀地间隔数据框中的日期数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31461035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com