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
- 차원 감소
- Gated Recurrent Unit
- 동시발생 행렬
- 선형대수
- py4e
- 분포 가설
- CBOW
- f1-score
- Charlse Severance
- dl
- Python
- convolution
- pythonForEverybody
- deep learning
- 시소러스
- 벡터 간 유사도
- 상호 정보량
- 파이썬
- Multi-Layer Perceptron
- Linear algebra
- GoogLeNet
- pytorch
- skip-gram
- object detaction
- 1x1 Convolution
- excel
- mlops
- nn.Module
- Long Short Term Memory
- docker
Archives
- Today
- Total
목록Visualization (1)
Tech & TIL
Scatter Plot
Ref: Kaggle Data Visualization Course Data Basic Scatter Plot 위 데이터 중 bmi와 charges를 scatter plot으로 시각화 해보자. import seaborn as sns sns.scatterplot(x=data['bmi'], y=data['charges']) BMI와 Charges(보험금 청구료)는 어느정도 Positively Correlated 하다고 볼 수 있다. BMI가 높아질수록 Charges도 높아지기 때문. 확실하게 상관관계를 시각화하기 위해 Regression Line을 추가해보자. 회귀선을 추가하려면 regplot을 사용하면 된다. sns.regplot(x=data['bmi'], y=d..
Data Science
2022. 5. 9. 16:39