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
- docker
- py4e
- 벡터 간 유사도
- 1x1 Convolution
- mlops
- dl
- 상호 정보량
- 차원 감소
- Charlse Severance
- nn.Module
- f1-score
- 시소러스
- Gated Recurrent Unit
- pytorch
- convolution
- Python
- skip-gram
- 동시발생 행렬
- deep learning
- pythonForEverybody
- excel
- CBOW
- Multi-Layer Perceptron
- object detaction
- 선형대수
- Long Short Term Memory
- GoogLeNet
- 파이썬
- 분포 가설
- Linear algebra
Archives
- Today
- Total
목록Scatterplot (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