로딩
요청 처리 중입니다...

covid 포토폴리오[python]

 covid 포토폴리오[python]

첨부파일 A1팀 보고서.docx 파일 다운로드 첨부파일 A1_SJH.py 파일 다운로드 # 0920_covid SJH import numpy as np import pandas as pd text = pd.read_csv(r'C:\Users\tj-bu\PycharmProjects\pythonProject\csse_covid_19_daily_reports\12-31-2020.csv') textt = pd.read_csv(r'C:\Users\tj-bu\PycharmProjects\pythonProject\csse_covid_19_daily_reports\12-31-2021.csv') text1 = text.groupby('Country_Region')['Confirmed', 'Deaths', 'Recovered', 'Active'].sum() textt1 = textt.groupby('Country_Region')['Confirmed', 'Deaths', 'Recovered', 'Act...