Quick tip on using data visualization in Pandas. If you want to quickly display your dataframe, then use the pd.DataFrame.plot(). By default, it will plot your data in a line; however, if you need other types of charts for your data then just state “bar”, “hist”, etc within the parentheses. Use this command for when you need a visual representation without the use of another Python library.