When we want to create exploratory data analysis plots, we can use Pandas is highly useful and practical. In Python Pandas library is mainly focused for data analysis and it is not only a data visualization library but also using this we can create a basic plots. # Example 3: Get the individual column as a barĭf.plot(kind='bar', title='test')
# Example 2: Create title of individual columns of histogramĭf.plot(kind='hist', subplots=True, title=) Quick Example of How to Add Title to Pandas Plotīelow are quick Examples of how to add Title to Pandas plot.ĭf.plot(kind = 'hist', title = 'Students Marks')