有一个包含 2 个变量的函数。这些变量是大表中的列。
def regr(x, y):
x = acc[x]
y = acc[y]
sns.regplot(x, y, line_kws=dict(color="r"))
plt.savefig('plot_' + ... + '.png')
accc = pd.merge(x, y, left_index= True, right_index = True)
accc.to_excel('table' + ... + '.xlsx')
x 和 y 是从 1 到 2023 的数字。
- 如何调用 regr(x,y) 显示名为“plot_x_y.png”的图片?
- 通过 pd.to_excel 显示表格时,是否可以以类似的方式将变量名称写入文件名的一部分?