Posts by Claudio Fagundes Pereira • 9 points
3 posts
-
-2
votes1
answer234
viewsQ: How does "parse" work for handling dates in Python?
I’m using a sequence of codes to apply in a forecasting: ''' dataparse = lambda dates: pd.datetime.strptime(dates, '%d/%m/%Y') df = pd.read_csv('BBSE3.csv', encoding ='utf8', sep=';', parse_dates =…
-
0
votes2
answers434
viewsA: Get the maximum value of each row in a grouped pandas dataframe
You said you wanted to group by state and by accident classification, so I don’t see the need for you to include the county in the code. Check that the line below solves your problem:…
-
1
votes1
answer84
viewsQ: How to store results of statistical calculations (mean, correlation) for later use in graphs?
[![Example of the Relevance Matrix][1]][1] I want to create a graph that is technically called "Relevance Matrix". The concept of this graph is to position the KPI (performance indicator) on x-axis,…