35

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'?

Bonifacio2
  • 2,978
  • 4
  • 33
  • 48
dokondr
  • 3,115
  • 10
  • 34
  • 57

1 Answers1

67

Try this :

fig = class_counts.plot(kind='bar',  
        figsize=(20, 16), fontsize=26).get_figure()

fig.savefig('test.pdf')
Ahmad
  • 7,430
  • 9
  • 60
  • 105
user666
  • 4,535
  • 2
  • 24
  • 33