This is my first line. # comment shows line end This would be a new line. This wouldn’t be a new line.
This is my first paragraph.
This is my second paragraph
Italics = Italics or Italics
Bold = Bold or Bold
This is my top level section
This is my 2nd level section
This is my 3rd level section
hist(rnorm(100))
https://rockefelleruniversity.github.io/Intro_To_R_1Day/ Github site
hist(rnorm(1000))
hist(rnorm(1000))
library(ggplot2)
hist(rnorm(100))
hist(rnorm(100))
temp <- rnorm(10)
temp
## [1] 0.5505069 0.5454244 1.4505271 0.1441297 -0.0184721 -0.2261329
## [7] 2.0493679 0.9531549 0.5200353 -1.4523069
library(knitr)
temp <- rnorm(10)
temp2 <- rnorm(10)
dfExample <- cbind(temp,temp2)
kable(dfExample)
temp | temp2 |
---|---|
-1.2701038 | -0.4555328 |
-0.8291358 | -0.7308796 |
0.5641043 | -0.1581898 |
-0.3463520 | -0.2166097 |
-0.0561682 | -0.3578709 |
1.0751160 | -0.8484922 |
1.1142111 | 0.5440243 |
1.3224746 | 0.4351128 |
0.7777309 | 0.2908396 |
0.1787267 | 1.8662130 |
Here is some freeform markdown and the first result from an rnorm call is -0.0777359, followed by some more free form text.
x <- sample(1000,10^4,replace=T)
length(x)
## [1] 10000