i’m trying to make a a custom line chart, like this one :
, but I have no idea how to do it by matplotlib or seaborn because i’m new to it.
do you have any idea please ?
heres the dataframe :
data = { "value": [1, 2, 3,4], "date": ['Fev.24', 'Mar.24', 'Avr.24','Mai.24'] } df = pd.DataFrame(data)
you could use your darafram example if you want to provide a sample line. thanks
