I'm trying to find the average for all the values in one of the columns in my dataset. I did df["column"].mean() but It's giving me a ridiculously big number that does not make sense considering how small my values are. The min() and max() function works fine, however.
Here is what I'm talking about.
To clarify, left side of the output in the first cell are the indexes, and right side are the values.
delay["If Delayed, for how long?"].astype(int)
print(delay["If Delayed, for how long?"].min())
print(delay["If Delayed, for how long?"].max())
print(delay["If Delayed, for how long?"].mean()