Posts by Ricardo Storck • 5 points
3 posts
-
0
votes1
answer361
viewsQ: Allocate day period to hours
I have the following df: df = pd.DataFrame({'hora completa':['21:35:00', '22:16:00', '00:50:00', '09:30:00', '14:30:00']}) print(df) hora completa 0 21:35:00 1 22:16:00 2 00:50:00 3 09:30:00 4…
-
0
votes2
answers2055
viewsA: Customize / set the order X-axis graph matplotlib bars
Solved! Thank you so much for your help. How I resolved? using Loc[ ] created a variable before: dias_ordenados = ['Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira',…
-
0
votes2
answers2055
viewsQ: Customize / set the order X-axis graph matplotlib bars
I generated a chart with values for each year from 2011 to 2015. but the graph generation, on the X axis, the years are grouped according to the values, not in the correct sequence (2011, 2012,…