Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions tb_practical.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ out$lines
```


We have produced and incidence trajectory for a system that seems to be in endemic equilibrium. What does this mean?
We have produced an incidence trajectory for a system that seems to be in endemic equilibrium. What does this mean?


**4) Can you take a moment and try to explain in a few words what it means for an epidemic to achieve an endemic equilibrium?**
Expand Down Expand Up @@ -437,10 +437,7 @@ First, we need to create a wrapper function that allows us to scale-up our inter
scale_up<- function (t, state, parameters,t.interv,parameters_old,fx) {

scale <- min((t-t.interv[1])/(t.interv[2]-t.interv[1]),1);
if (scale<0)
{
scale=0
}
scale <- max(0, scale)

pars_scaled <- parameters;

Expand Down