서울시 일자별 코로나 확진자 수 공공데이터 가져오기¶ In [131]: 필요한 라이브러리 준비해주기 import requests import json import pandas as pd import seaborn as sns #시각화 라이브러리 import matplotlib.pyplot as plt #그래프 스타일 설정 %matplotlib inline %config InlineBackend.figure_format = 'retina' plt.rc("axes", unicode_minus=False) #마이너스 폰트 깨지는 문제 대처 sns.set( font="AppleGothic") import os if os.name == 'posix': plt.rc("font", family="AppleGothic..