📂 Engineering/🔹 Data & AI
[pandas]판다스 df.info()를 했는데 non-null counts가 안 보여요
Gondev Lab - 꼰데랩
2021. 3. 17. 16:06
728x90
train.info()

해결방법
train.info(verbose=True, null_counts=True) # verbose는 안 넣어도 된다.

verbose 파라미터는 안 넣어줘도 된다.
stackoverflow.com/questions/43427564/display-all-informations-with-data-info-in-python
Display all informations with data.info() in Python
I would display all informations of my data frame which contains more than 100 columns with .info() from panda but it won't : data_train.info() <class 'pandas.core.frame.dataframe'=""> RangeIn...
stackoverflow.com
728x90