fschwartzer commited on
Commit
45968fa
1 Parent(s): 81da18b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -7,6 +7,10 @@ import datetime
7
  # Load the CSV file
8
  df = pd.read_csv("anomalies.csv", quotechar='"')
9
 
 
 
 
 
10
  # Filter 'real' higher than 10 Million
11
  df= df[df['real'] >= 1000000.]
12
 
 
7
  # Load the CSV file
8
  df = pd.read_csv("anomalies.csv", quotechar='"')
9
 
10
+ df.rename(columns={"ds": "Ano e mês", "real": "Despesa", "group": "Grupo"})
11
+
12
+ print(df)
13
+
14
  # Filter 'real' higher than 10 Million
15
  df= df[df['real'] >= 1000000.]
16