Reputation: 171
I need to get the standard deviation of all cells (Not columns and rows but all the cells)
My dataframe looks like this
Expected answer as the standard deviation = 69.61 (Taken from excel)
Upvotes: 0
Views: 36
Reputation: 6574
You can do it this way:
df.stack().std()
Upvotes: 2