Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 리액트
- Kaggle
- bigquery
- python
- DBSCAN
- LDA
- ADP
- frontend
- do it
- 클러스터링
- 차원 축소
- 머신러닝
- 구글
- Kubernetes
- docker
- 대감집
- 최적화
- 타입스크립트
- 빅쿼리
- 프론트엔드
- React
- r
- 캐글
- 파이썬
- Machine Learning
- ADP 실기
- TooBigToInnovate
- 쿠버네티스
- 대감집 체험기
- 심층신경망
Archives
- Today
- Total
목록intermediate (1)
No Story, No Ecstasy
[Kaggle Intermediate Machine Learning] Python basic code
1. 기초 import pandas as pd import numpy as np from sklearn.model_selection import train_test_split # Read the data X_full = pd.read_csv('../input/train.csv', index_col='Id') X_test_full = pd.read_csv('../input/test.csv', index_col='Id') # Remove rows with missing target, separate target from predictors X_full.dropna(axis=0, subset=['SalePrice'], inplace=True) y = X_full.SalePrice X_full.drop(['Sa..
Data Science Series
2021. 4. 28. 21:52