Issue
When trying to save plot image created with 'pandas.DataFrame.plot' from ' pandas.core.series.Series' object :
%matplotlib inline
type(class_counts) # pandas.core.series.Series
class_counts.plot(kind='bar', figsize=(20, 16), fontsize=26)
Like this:
import matplotlib.pyplot as plt
plt.savefig('figure_1.pdf', dpi=300)
results in empty pdf file. How to save image created with 'pandas.DataFrame.plot'?
Solution
Try this :
fig = class_counts.plot(kind='bar',
figsize=(20, 16), fontsize=26).get_figure()
fig.savefig('test.pdf')
Answered By - user666
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.