To assign each level a color from the [sequential greens](http://colorbrewer2.org/#type=sequential&scheme=BuGn&n=9) palette from the `r CRANpkg("RColorBrewer")` package, we create a character vector with the colors and assign the levels as names.
To assign each level a color from the [sequential greens](http://colorbrewer2.org/#type=sequential&scheme=BuGn&n=9) palette from the `r BiocStyle::CRANpkg("RColorBrewer")` package, we create a character vector with the colors and assign the levels as names.
```{r, eval = FALSE}
colors <- RColorBrewer::brewer.pal(8, "BuGn")
...
...
@@ -239,11 +239,10 @@ At any point in time, and particular when data analysis is finished, the `assemb
```{r, eval = FALSE}
dashboard %>%
i2dash::assemble(
pages = c("page1", "page3", "page4"))
assemble(pages = c("page1", "page3", "page4"))
```
The resulting R Markdown file can be run with `r CRANpkg("Shiny")` or rendered with `r CRANpkg("rmarkdown")`.
The resulting R Markdown file can be run with `r BiocStyle::CRANpkg("Shiny")` or rendered with `r BiocStyle::CRANpkg("rmarkdown")`.