Publications by Enwu Liu

Multiple imputation for missing data

24.06.2023

Missing data in research Missing data in research can cause serious bias and decrease statistical power. Several statistical methods have been developed to deal with missing data, such as expectation-maximization (EM) algorithm and multiple imputation (MI). The key difference between the EM algorithm and the MI method is that EM algorithm dose ...

1162 sym

Complementary log-log link

05.06.2023

The Complementary Log-Log link has the following form: \[\eta_i = \log (-\log(1-\pi_i))\] Comparing with the logit link function with the form: \[\eta_i=logit(\pi_i)=\log\frac{\pi_i}{1-\pi_i}\]...

198 sym

Parameter approaches to estimate the Force of Infection

03.06.2023

Notes to estimate the Force of Infection using linear parameter model. glm(cbind(Pos,Tot-Pos), we use cbind() here, because the data are not individual observation, it is a kind of weighted data. X<–matrix(rep(1,length(Age))), x was assigned to negative because FOI need to be positive and for the catalytic model we need to restrict coefficie...

762 sym 1 img

Newton Raphson and Fisher Scoring

29.05.2023

For Fisher scoring we use the following iterative equation to calculate the \(\beta\)s \[\beta^{(t+1)}=\beta^{(t)}+\left [-El''(\beta^{(t)})\right ]^{-1}l'(\beta^{(t)}\] where \(l\) is the log-likelihood function for the entire sample \(y_1,...,y_N\) and \(-E(l''(\beta^{(t)})=-E(\frac{\partial l^2}{\partial \beta_j \partial \beta_k})=E\left[\f...

5354 sym

SIR with vaccination

11.05.2023

This is a note for SIR model with vaccination\(^1\). Suppose p proportion of population was vaccinated with 100% vaccine efficacy, we can write the dynamic system as the following: \[ \left\{\begin{array}{l} \frac{ds(t)}{dt}=\mu(1-p)-(\lambda(t)+\mu)s(t) & (1)\\ \frac{d\lambda(t)}{dt}=\nu\lambda(t)(R_0s(t)-1) &(2)\\ ...

1785 sym 3 img

MSEIR

05.05.2023

This is the note for the MSEIR model (Models with maternal antibodies and latent periods) from the book “Modeling infectious disease parameters based on serological and social contact data: a modern statistical perspectiv” in page 49, the authors showed the ODE system and the solution of the ODE by the figure 3.18. The ODE system can be so...

2771 sym 3 img

Runge-Kutta Method

03.05.2023

The Runge-Kutta method attempts to improve the Euler’s method. Each Runge–Kutta method is derived from an appropriate Taylor method (In fact, Euler’s method can also be seen derived from a simple Taylor method). These methods can be constructed for any order. By far, the most often used method is the classical fourth-order Runge-Kutta me...

1160 sym

Calculate R0

29.04.2023

\(R_0\), pronounced “R naught, is called the basic reproduction number in Epidemiology, it is defined as the expected number of secondary cases produced by a single case in a susceptible population.\(^1\) \(R_0\) is an important parameter for public health planning such as how quickly people can return to work or when to reopen schools, et a...

8730 sym 3 img

Solving Differential Equations in R: Package deSolve

27.04.2023

https://www.jstatsoft.org/article/view/v033i09...

50 sym

Wall plug, drill size and screw size

08.04.2023

...

4 sym 1 img