lin lin
lin lin

Reputation: 11

How to express equation with particular word in R markdown

all I'm new to R markdown. I tried several times but still cannot get it.

$\beta 0=-1.85846803.$ $\beta 1=0.01977384.$ $\beta 2=1.61866125.$ $D11=0.011109012.$ $\sigma^2=0.004051476 $

In this, I wanna print out beta0,beta1,beta2, D11, signa^2 values. how to use LaTex to present this one??

$Yij=\beta 0+\beta 1*ageij +\beta 2*heightij+ boi+b1i+eij $

Is something wrong here?

Upvotes: 0

Views: 261

Answers (1)

guaguncher
guaguncher

Reputation: 77

Is this what you wanted to write:

$Y_{ij}=\beta_0+\beta_1*age_{ij} +\beta_2*height_{ij}+ b_{oi}+b_{1i}+\varepsilon_{ij}$

Upvotes: 2

Related Questions