This is my first class with R markdown taken by Mr Samuel,its so Nice!

to itemise we use * and +

I want to list the names of persons here in this class using asterisk *

five fruit that i like

  1. Mango
  2. pear
  3. apple
  4. pineapple

how to italisize

\[x^2+2x+3=0\]

The first thing i want to do is to plot a graph

I <- function(S,beta,alpha,c) {
  C-S+(alpha/beta)*log(S)
}
beta <- 0.01
alpha <- 1/5
C <- 100
S <- seq(1,100,0.1)
plot(S,I(S,beta,alpha,C),col = "red",lwd=2,xlab = "s",ylab = "I",type = "p" )

df <- read.csv("C:/Users/User/Desktop/R/Epi_data.csv")
head(df)
##   mal_cases Temp Rainfall
## 1      6445   27     2.30
## 2      6232   27    27.80
## 3      5268   27   129.00
## 4      6142   27    42.64
## 5      3081   26   170.10
## 6      4558   24   179.80