I am Michael Robinson
This code is to calculate 12 factorial.
x <- 1
for (i in 1:12) {
x <- x * i
}
print(x)
## [1] 479001600
You can also embed plots, for example:
Note that the echo = FALSE
parameter was added to the
code chunk to prevent printing of the R code that generated the
plot.