Skip to content

Commit

Permalink
Create day-10.md
Browse files Browse the repository at this point in the history
  • Loading branch information
srlee056 committed Oct 27, 2023
1 parent 87e893e commit 0731bc0
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions content/post/DevCourse/day-10.md
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>*

## ❗ 느낀 점

0 comments on commit 0731bc0

Please sign in to comment.