Kaggle/Intro to Machine Learning

2. Basic Data Exploration

RiLLa_0511 2023. 8. 2. 14:56
728x90

● 데이터 처리와 분석을 위한 라이브러리로  Pandas를 사용

 

→ 대체로 pandas는 코드에서 pd로 줄여서 사용

import pandas as pd

 

 

● Kaggle notebook 사용법

 

https://www.youtube.com/watch?v=4C2qMnaIKL4 

 

● csv 파일 불러오기

 

→ pandas library의 read_csv() 함수 이용

import pandas as pd

iowa_file_path = '../input/home-data-for-ml-course/train.csv' # 파일 경로

home_data = pd.read_csv(iowa_file_path) # 파일 불러오기

 

describe()

 

통계량을 요약해주는 메서드

home_data.describe()

 

'Kaggle > Intro to Machine Learning' 카테고리의 다른 글

6. Random Forests  (0) 2023.08.11
5. Underfitting and Overfitting  (0) 2023.08.04
4. Model Validation  (0) 2023.08.03
3. Your First Machine Learning Model  (0) 2023.08.02