Sep-05-2024, 12:04 PM
Hello everyone,
I hope you're all doing well.
I have a dataframe containing the name of the months (Jan to Dec):
![[Image: attachment.php?aid=3020]](https://python-forum.io/attachment.php?aid=3020)
any idea on how to do this i searched for matplotlib and plottable libraries none of them could do the same.
thank you
I hope you're all doing well.
I have a dataframe containing the name of the months (Jan to Dec):
import pandas as pd l = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] df = pd.DataFrame(l, columns=["Month Name"])I want to show the dataframe records in a tabular visual as following:
any idea on how to do this i searched for matplotlib and plottable libraries none of them could do the same.
thank you