-1

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')
Olympiloutre
  • 2,268
  • 3
  • 28
  • 38
  • nobody will be able to help you if you do not explain in what way "it couldn't run in pycharm". Are you getting an error message? In any case, please provide a [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve), and read [How to ask](https://stackoverflow.com/help/how-to-ask) before editing your question – Diziet Asahi Jun 13 '19 at 07:50

1 Answers1

1

I think plt savefig('image3.png') needs to be changed to plt.savefig('image3.png')