# Create a Pandas dataframe from some data. df = pd.DataFrame( "Numbers": [1010, 2020, 3030, 2020, 1515, 3030, 4545], "Percentage": [0.1, 0.2, 0.33, 0.25, 0.5, 0.75 ...
In file retropolate_func.py, we are seeing errors due to ambiguity between a column & an index both called date. Error: "'date' is both an index level and a column label, which is ambiguous." This ...