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 |
Tags
- lstm
- 실기
- 토익스피킹
- SQL
- randomforest
- 파이썬
- 볼린저밴드
- Programmers
- 백테스트
- 변동성돌파전략
- 파트5
- docker
- 코딩테스트
- sarima
- TimeSeries
- 빅데이터분석기사
- backtest
- ADP
- Crawling
- Quant
- 데이터분석전문가
- 파이썬 주식
- 프로그래머스
- PolynomialFeatures
- 주식
- 비트코인
- 데이터분석
- GridSearchCV
- Python
- hackerrank
Archives
- Today
- Total
목록roc_auc (1)
데이터 공부를 기록하는 공간

1. 데이터 전처리 import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns df = pd.read_csv("./mobile_cust_churn/mobile_cust_churn.csv") df.drop(columns=['Unnamed: 0','id'], axis=1, inplace=True) target = 'CHURN' features = df.columns.tolist()[:-1] numeric_features = df.select_dtypes(include=['int64']).columns.tolist() category_features= [] for col in features: if co..
STUDY/ADP, 빅데이터분석기사
2021. 3. 21. 11:07