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