-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
+++ | ||
author = "Seorim" | ||
title = "Day 10" | ||
date = 2023-10-27T16:54:37+09:00 | ||
|
||
categories = [ | ||
"DevCourse", | ||
] | ||
tags = [ | ||
"TIL", | ||
] | ||
+++ | ||
|
||
|
||
# TIL - 스크래핑 데이터의 시각화 | ||
|
||
## 📋 공부 내용 | ||
### 데이터의 시각화 | ||
#### Seaborn | ||
> `matplolib` 라이브러리를 기반으로 하여, 다양한 고수준(high-level) 그래프를 그릴 수 있는 라이브러리 | ||
#### matplolib | ||
> 파이썬 시각화 라이브러리 | ||
#### 설치 및 불러오는 방법 | ||
- 설치 | ||
``` | ||
pip install seaborn | ||
``` | ||
- 불러오기 (import) | ||
```python | ||
import seaborn as sns | ||
import matplotlib.pyplot as plt | ||
``` | ||
|
||
#### 데이터 빈도 - Counter | ||
#### WordCloud | ||
#### KoNLPy | ||
|
||
#### 활용하여 데이터 시각화 | ||
- line | ||
|
||
|
||
## 👀 CHECK | ||
|
||
*<span style = "font-size:15px">(어렵거나 새롭게 알게 된 것 등 다시 확인할 것들)</span>* | ||
|
||
## ❗ 느낀 점 |