Home 캐글 관련 포스트
Post
Cancel

캐글 관련 포스트

1번 인용 입니다.

2번 인용 입니다.

3번 인용 입니다.


import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

plt.style.use("seaborn-v0_8")
sns.set(font_scale=2.5)

import missingno as msno # 이것도 데이터 비주얼 프로그램

#ignore warnings
import warnings
warnings.filterwarnings('ignore') # 버전과 관련된 업데이트 내용을 무시가능하다.

%matplotlib inline # 바로 사이트에서 직접 볼수 있다.

This post is licensed under CC BY 4.0 by the author.