스터디 개요

스터디 날짜: 2022년 11월 24일 오후 7시 30분~8시 40분

참여자: 윤태상, 이순교, 김조현, 서상민, 서동은, 손민주

발표자: 김조현, 손민주

내용:

내용

1. 강의 실습

발표자: 김조현

국가통계포털 데이터셋 소개

분석 데이터 다운로드:

KOSIS

코드 html 파일:

K-beauty 온라인 판매분석.html

코드 노트북 파일:

K-beauty 온라인 판매분석.ipynb

필요 라이브러리 가져오기

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt

%matplotlib inline

import os
if os.name == "nt":
    sns.set(font = "Malgun Gothic")
elif os.name == "posix":
    sns.set(font = "AplleGothic")

# 글자를 더 선명하게
%config InlineBackend.figure_format = 'retina'