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.

0

1 Answer 1

0

Iterate over the values with a loop:

data = pd.Series(list(range(100)))
[x for x in data]
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.