没有找到与指定签名和铸造匹配的循环

时间:2018-10-15 11:58:11

标签: python-3.x loops scatter-plot

我的代码段是根据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()转换其余的列值(时间除外)。但是我不断收到错误消息

enter image description here

我可以使用什么替代方法?

0 个答案:

没有答案