All other code ran but when I typed the below code, it couldn't run in pycharm
Kde = np.sum(kernels,axis=0)
Kde_fig = plt.plot(x_axes,kde,color='green')
sns.rugplot(ds)
plt.suptitle('KDE Plot')
plt savefig('image3.png')
All other code ran but when I typed the below code, it couldn't run in pycharm
Kde = np.sum(kernels,axis=0)
Kde_fig = plt.plot(x_axes,kde,color='green')
sns.rugplot(ds)
plt.suptitle('KDE Plot')
plt savefig('image3.png')
I think plt savefig('image3.png')
needs to be changed to plt.savefig('image3.png')