My first Rmarkdown
My first Rmd execution
Hello, World :D
x <- c(1, 2, 3, 4, 5, 6)
mean(x)## [1] 3.5print("Hello, World!")## [1] "Hello, World!"A sin chart
‘coz, why not
plot(1:100, sin(1:100), type = "b")
x <- c(1, 2, 3, 4, 5, 6)
mean(x)## [1] 3.5print("Hello, World!")## [1] "Hello, World!"sin chart‘coz, why not
plot(1:100, sin(1:100), type = "b")