/* COVIC-19 Data */ clear all import delimited "http://bigblue.depaul.edu/jlee141/econdata/health_data/Coronavirus/full_data.csv" encode location, generate(loca_num) gen daten = date(date,"YMD") format %td daten xtset loca_num daten /* Time Series Plot for US and China */ tsline total_cases new_cases if location == "United States" & daten > td(01mar2020) tsline total_cases new_cases if location == "China" & daten > td(20jan2020)