1
I’m trying to sum up the column Duration ,and present using plot()
trip_data['duration'].value_counts().plot(kind = 'bar')
trip_data['duration'].count_data().plot(kind = 'bar')
trip_data['duration'].size().plot(kind = 'bar')
but everything I try presents separately or gives error, how can I do this?
Hello, Claudio. Could you post the first lines of the Dataframe? So, we can get an idea of what the data is like.
– gabra