I currently have an existing dataframe with country, mode of arrival and arrival count. I am hoping to create a grouped bar chart but I only know how to create regular bar charts.
This is the formula I am using for now
trace3 = go.Bar(x=df5['cor'],y=df5['arv_count'], name = 'Total arrival count by country in 2013')
iplot([trace3])
This is how the graph looks like:
