0

I have 648 variable in my train data set. Upon coding:

print(train.isnull().sum())

python is spiting output for only first 30 and last 30 variables. I want to know results for all the variables.

andrew_reece
  • 18,690
  • 2
  • 27
  • 54

1 Answers1

0

Iterate over the values with a loop:

data = pd.Series(list(range(100)))
[x for x in data]
andrew_reece
  • 18,690
  • 2
  • 27
  • 54