I am new to python and matplotlib, I want to plot a line graph and I have 3 arrays:
np.append(self.arraynv,nv)
np.append(self.arraysvdb,Svdb)
np.append(self.arraykclen,kclen)
which I want to be x, y and z axis points respectively the code I wrote:
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
Axes3D.plot(self.arraynv,self.arraysvdb, self.arraykclen)
ax.show()
The error I am getting:
'numpy.ndarray' object has no attribute 'has_data'