Question: Problem 1 . Create a program ( using python ) that, given an arbitrary input for the creation date of a personal bot ( e

Problem 1. Create a program (using python) that, given an arbitrary input for the creation date of a personal bot (e.g., T=50), outputs the following for the given date:
Susceptible =
Infected =
Recovered =
Deceased =
a. You can use web scraping from the site ourworldindata
b. Use COVID-19 data for South Korea on September 4,2023, as the initial extraction date.
c. From the South Korea data on September 4,2023, extract total_cases, new_cases, total_death, and new_deaths, and set the initial values as follows:
Start Susceptible =1
Start Infected = new_cases / total_cases
Start Recovered =0
Start Deceased = new_deaths / total_death
Use the dynamic matrix (A)=[[0.950.0400],[0.050.8500],[00.110],[00.0101]].

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!