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

boxplot, barplot 데이터 불러오기 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') ## 상자그림 from sklearn.datasets import load_iris # iris 데이터 제공 라이브러리 iris = load_iris() iris_df = pd.DataFrame(data=iris.data, columns=iris.feature_names) iris_df['target'] = iris.target iris_df['target'] = iris_df[..
python
2021. 7. 26. 22:19