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
- Python
- paper review
- 브라이틱스 스태킹
- Deep Learning for Computer Vision
- 분석 툴
- 브라이틱스 분석
- Brightics EDA
- 데이터 분석
- 범주형 변수 처리
- Activation Function
- 머신러닝
- 파이썬 SQL 연동
- Brigthics Studio
- 파이썬 내장 그래프
- 삼성 SDS 서포터즈
- michigan university deep learning for computer vision
- 딥러닝
- Brightics 서포터즈
- Brightics AI
- 검증 평가 지표
- 삼성 SDS
- 데이터 분석 플랫폼
- pymysql
- 서포터즈 촬영
- Random Forest
- 비전공자를 위한 데이터 분석
- 브라이틱스 AI
- 브라이틱스 프로젝트
- Brightics studio
- 브라이틱스 서포터즈
Archives
- Today
- Total
목록EDA (1)
하마가 분석하마

histogram, kernel density, pie 데이터 불러오기 import pandas as pd import matplotlib.pyplot as plt pd.set_option('display.max_rows', 80) pd.set_option('display.max_columns', 999999) plt.style.use('ggplot') import pandas as pd train = pd.read_csv('data/train.csv', index_col=0) train.head() ## 상자그림 from sklearn.datasets import load_iris # iris 데이터 제공 라이브러리 iris = load_iris() iris_df = pd.DataFrame(data=i..
python
2021. 7. 29. 22:29