강의

멘토링

커뮤니티

Inflearn コミュニティ Q&A

inwardly10044 のプロフィール画像
inwardly10044

投稿した質問数

[リニューアル] 初めてのPythonマシンラーニングブートキャンプ (簡単に!実際のKaggle問題を解きながら整理) [データ分析/科学 Part2]

機械学習適用のためのFeature Engineering作業3(アップデート)

missingno 대체

作成

·

159

0

import matplotlib.pyplot as plt

plt.figure(figsize=(15, 8))
plt.imshow(df.isnull(), aspect="auto", cmap="viridis", interpolation="nearest")
plt.colorbar(label="Missing (1) / Present (0)")
plt.title("Missing Values Matrix", fontsize=16)
plt.xlabel("Columns", fontsize=12)
plt.ylabel("Index", fontsize=12)
plt.xticks(ticks=range(df.shape[1]), labels=df.columns, rotation=90, fontsize=10)

plt.show()
python머신러닝pandaskaggle

回答 1

0

funcoding님의 프로필 이미지
funcoding
インストラクター

안녕하세요. 공유? 해주시려고 쓰신 것 같은데, 좋은 팁 감사합니다.

inwardly10044 のプロフィール画像
inwardly10044

投稿した質問数

質問する