0
import numpy as np
import pandas as pd
BASE_GERAL = pd.read_csv('base_prestadores.csv')
indice | data_utilização| preço | quantidade_itens
1 | 2014-05-01 | 20.00 | 5
2 | 2014-05-08 | 30.00 | 6
3 | 2014-04-10 | 50.00 | 8
4 | 2014-04-15 | 20.00 | 10
I imported the above table and need to group the data by month/year, considering the sum of the quantity of items how can I do this?
In what format do you expect the data to come out? , everything that is the same month will add up the price and quantity of items?
– Barbetta
I want to assemble a bar graph, considering only the sum of the quantities of the items.
– Cosme Franco