강의

멘토링

커뮤니티

BEST
Data Science

/

Certificate (Data Science)

[After Work Side Projects] Big Data Analytics Engineer Practical Exam (Task Types 1, 2, 3)

I will guide non-majors and beginners to quickly pass the Big Data Analysis Engineer practical exam! Theory lightly, practice thoroughly. Even without complex background knowledge, focusing on past questions, we intensively study only the points sure to appear on the exam.

(4.9) 755 reviews

4,845 learners

  • roadmap
빅데이터
빅데이터분석기사
머신러닝
판다스
pandas
자격증
시험
Engineer Big Data Analysis
Big Data
Python
Pandas
Machine Learning(ML)

What if the following warning occurs? (numeric_only=True)

I thought it would be good to share all the information that happyarche asked on May 6, 2023!

[Question]

:2: FutureWarning: The default value of numeric_only in DataFrame.corr is deprecated. In a future version, it will default to False. Select only valid columns or specify the value of numeric_only to silence this warning. X_train.corr()

I get a warning when using X_train.corr(). How do I fix this?

[answer]

📌 How to completely resolve the warning : corr( numeric_only=True ) This means that only numeric data will be used. The default is ( numeric_only=False ).

📌 Cause of occurrence : The warning occurs when the version of Pandas installed in Colab is updated. The warning message is the same if it is included in other functions as well as corr(). You can ignore the warning, but it is good to know the solution.

📌 In the test environment?: In the test environment (current standard version), the version is low, so the warning does not occur! However, the libraries and versions that can be used in the test are disclosed just before the practical test.

Comment