Learn R Programming

babsim.hospital (version 11.5.14)

ex1InfectedDf: ex1InfectedDf

Description

Data used in example 1 and for testing A synthetic data set of COVID-19 cases with 99 obs. of 8 variables:

Usage

ex1InfectedDf

Arguments

Format

A data frame with 99 obs. of 8 variables:

index

int 1 2 3 4 5 6 7 8 9 10 ...

Day

Date, format: "2020-03-03" "2020-03-04" "2020-03-05" "2020-03-06" ...

Infected

num 6 0 1 3 3 1 5 1 6 104 ...

Sick

num 6 6 7 10 13 14 19 20 26 130 ...

InfectedCum

num 6 6 7 10 13 14 19 20 26 130 ...

normalStation

num 1 1 1 1 2 2 3 3 4 18 ...

intensive

num 0 0 0 0 0 0 0 0 0 1 ...

ventilation

num 0 0 0 0 0 0 0 0 0 2 ...

Examples

Run this code
# NOT RUN {
x <- ex1InfectedDf
# first look
str(x)

# plot  
x$InfCum <- cumsum(x$Infected)
plot(x$Day, x$InfCum, type="l", log="y", ylim=c(1,500))
lines(x$Day, x$Infected + 1e-6)
 
   
# }

Run the code above in your browser using DataLab