3 examples of 'seaborn save plot' in Python

Every line of 'seaborn save plot' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
254def save_plot(test,predicted, file_name):
255 plt.plot(test, color='red',label='Real Stock Price')
256 plt.plot(predicted, color='blue',label='Predicted Stock Price')
257 plt.title('Stock Price Prediction')
258 plt.xlabel('Time')
259 plt.ylabel('Stock Price')
260 plt.legend()
261 plt.savefig(file_name + '.jpg')
135def save_plot(self, filename, img_format="eps", **kwargs):
136 """
137 Save matplotlib plot to a file.
138
139 Args:
140 filename: Filename to write to.
141 img_format: Image format to use. Defaults to EPS.
142 """
143 plt = self.get_plot(**kwargs)
144 plt.savefig(filename, format=img_format)
4def ggsave(plot, filename, width=None, height=None):
5 plot.make()
6 w, h = plot.fig.get_size_inches()
7 if width:
8 w = width
9 if height:
10 h = height
11 plot.fig.set_size_inches(w, h)
12 plot.fig.savefig(filename)

Related snippets