4

I have a dataset with 200000 rows and 201 columns. I want to have descriptive statistics of all the variables. I tried: '''train.describe()''' But this is only giving the output for the first and last 8 variables. This there any method I can use to get the statistics for all of the columns.

kamal deep
  • 41
  • 2

1 Answers1

1

probably, some of your columns where in some type other than numerical. Try train.apply(pd.to_numeric) then train.describe()

Guinther Kovalski
  • 1,629
  • 1
  • 7
  • 15