【发布时间】:2017-05-01 10:41:39
【问题描述】:
我使用 pandas 读取我的 csv 文件并将两列分别转换为数组作为自变量/因变量。 the data reading, array-turning trans and value assign
然后当我想使用 matplotlib.pyplot 绘制折线图时,结果发现 'numpy.ndarray' 对象没有属性 'find'。
import numpy as np
import matplotlib.pyplot as plt
plt.plot(x,y)
【问题讨论】:
标签: python pandas matplotlib