Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions