dwww Home | Show directory contents | Find package

---
title: "R Notebook"
output: html_notebook
---

This is an R Markdown Notebook.

```{r chunk-one}
summary(cars)
```

This is a plot.

```{r chunk-two}
plot(cars)
```

This plot is static.

![plot](tinyplot.png)

This is an HTML widget.

```{r chunk-three}
if (requireNamespace("dygraphs", quietly = TRUE)) {
  dygraphs::dygraph(nhtemp, main = "New Haven Temperatures") %>% 
    dygraphs::dyRangeSelector(dateWindow = c("1920-01-01", "1960-01-01"))
}
```

```{r chunk-four}
# The R code in here is ignored; we're
# just going to inject some arbitrary HTML.
```

For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

Generated by dwww version 1.15 on Sun Jun 16 17:10:54 CEST 2024.