I just installed matplotlib and am trying to run one of there example scripts. However I run into the error detailed below. What am I doing wrong?
from mpl_
Try this:
import matplotlib.pyplot as plt import seaborn as sns from mpl_toolkits.mplot3d import axes3d fig=plt.figure(figsize=(16,12.5)) ax=fig.add_subplot(2,2,1,projection="3d") a=ax.scatter(Dataframe['bedrooms'],Dataframe['bathrooms'],Dataframe['floors']) plt.plot(a)