+ 2

Using matplotlib.pyplot

Why the graph can not be plotted https://sololearn.com/compiler-playground/cJuh5qu0fbmt/?ref=app

1st Apr 2025, 10:22 AM
Oliver Pasaribu
Oliver Pasaribu - avatar
4 Antworten
+ 3
Oliver Pasaribu The graph needs to be save, just add plt.savefig('image.png') at the end.
1st Apr 2025, 10:48 AM
Gulshan Mahawar
Gulshan Mahawar - avatar
+ 3
The image needs to be saved in Sololearn in order to be displayed. We need to use the savefig() function (with dot notation) to save the plot to an image file in the current working directory. Syntax:- plt.savefig('f_name') This is not strictly necessary in all environments but Sololearn requires it in order to display your graph. On a side note, you do not even need to import numpy in this code as you are not using an array.
1st Apr 2025, 11:43 AM
Ushasi Bhattacharya
+ 1
Gulshan Mahawar and Ushasi Bhattacharya thank you very much.
1st Apr 2025, 4:58 PM
Oliver Pasaribu
Oliver Pasaribu - avatar
+ 1
We're here to help each other out. Keep coding, keep growing!
1st Apr 2025, 5:06 PM
Ushasi Bhattacharya