我的代码段是根据TIME绘制每个属性。这是代码:
#ta_nonl is file name
#get no of column in ta_nonl
no_colm1 = len(ta_nonl.columns)
#print(no_colm)
#plot every attribute against time
plt.subplots(no_colm1, figsize=(20,15))
for i in range(0, no_colm1-1):
#error starts here
#I need to log all X-axis to normalize them
test1 = np.log(ta_nonl.columns[i], dtype='float64')
plt.subplot(5,3,i+1)
sns.scatterplot(x=test1, y="time",data=ta_nonl)
plt.tight_layout()
plt.show()
我需要使用log()转换其余的列值(时间除外)。但是我不断收到错误消息
我可以使用什么替代方法?