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

import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns import warnings warnings.filterwarnings('ignore') df = pd.read_csv('./Mall_Customers/Mall_Customers.csv') print(df.shape) df.head(3) df = df.rename(columns = {"Annual Income (k$)": "income", "Spending Score (1-100)":"score", "Gender":"gender", "Age":"age"}) sns.pairplot(df, hue='gender') df.drop('Custome..
STUDY/ADP, 빅데이터분석기사
2021. 3. 21. 12:47