gpt4 book ai didi

python - 将 DataFrame 变量名称作为字符串传递

转载 作者:行者123 更新时间:2023-12-02 17:02:33 24 4
gpt4 key购买 nike

我有以下函数来绘制图表:

def plot_ATD(DataFrame):
#Initialise 225V ATD plot
fig = plt.figure()
ax = fig.add_subplot(111)
#take columns from data set and make to list which is passed to matplotlib to plot a graph
x = DataFrame['Arrival Time (ms)'].tolist()
y = DataFrame['Intensity'].tolist()
line, = ax.plot(x,y, 'r-')
#use numpy to get the max of Intensity, then determine the corresponding arrival time
ymax = np.max(y)
xpos = y.index(ymax)
xmax = x[xpos]
time = xmax
#add an annotation point at the maxima giving the arrival time at this position
# ax.annotate(s=text of annotation, xy=point to annotate, xytext=position to place text
# arrowprops=dict(facecolor=color of arrow))
ax.annotate(s=xmax, xy=(xmax, ymax), xytext=(xmax+5, ymax+5),
arrowprops=dict(facecolor='orange'),
)
#ax.set_ylim(0,600000)
ax.set_xlim(0,20)
plt.xlabel('Arrival time (ms)')
plt.title(DataFrame.name)
return plt.show()

我在以下 pandas DataFrame 上使用它:

V100 = pd.read_csv('Documents/spreadsheets/Data/100V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])
V125 = pd.read_csv('Documents/spreadsheets/Data/125V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])
V150 = pd.read_csv('Documents/spreadsheets/Data/150V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])
V175 = pd.read_csv('Documents/spreadsheets/Data/175V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])
V200 = pd.read_csv('Documents/spreadsheets/Data/200V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])
V225 = pd.read_csv('Documents/spreadsheets/Data/225V_9z.csv', names=['Arrival Time (ms)', 'Intensity'])

我想让图表的标题成为 DataFrame 的名称,即 V100、V125 等。

我不确定正确的语法或如何做到这一点?请帮忙!

最佳答案

首先,在函数中使用 DataFrame 作为数据框的名称不是好的做法,因为它是 pandas.DataFrame 类本身的名称。例如,最好将其更改为 df

因此您可以使用(例如)设置数据框的名称

V100.name = 'V100'

并对所有数据帧执行此操作。然后在您的函数调用(新命名的)df.name 中获取您之前分配给数据框的名称。

更新

要自动设置数据框名称,您可以简单地做

file_name = 'Documents/spreadsheets/Data/100V_9z.csv'
V100 = pd.read_csv(file_name, names=['Arrival Time (ms)', 'Intensity'])
V100.name = file_name.split('/')[-1].split('_')[0] # 'V100'

关于python - 将 DataFrame 变量名称作为字符串传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53387844/

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