Your assignment is to install and configure R and RStudio to produce an html file from the reproducible knitr document below.
Hmisc, rms, rmdformatsPut the following inside the template:
```{r setup, echo=FALSE}
require(Hmisc)
knitrSet(lang='markdown')
```
# Descriptive Statistics
```{r desc, results='asis'}
getHdata(support) # download from hbiostat.org/data/repo
html(describe(support))
```
# Relationships
```{r relate}
with(support, table(dzclass, dzgroup))
with(support, plsmo(age, meanbp, group=dzclass))
```
```{r box, w=6, cap="Extended box plots for mean arterial blood pressure and serum creatinine"}
# Floating figure environment, allowing caption and cross-referencing
bpplotM(meanbp + crea ~ dzgroup, data=support, cex.strip=.75)
```