knitr::opts_chunk$set(echo = TRUE, fig.align = "center", table.align = "center", warnings = FALSE) library(knitr)
You are visiting the github repository of the divViz (Visualisation tool for biodiversity data) package. divViz is a shiny based web app supporting interactive exploratory data analysis of simulated biodiversity data.
The main purpose of divViz is:
This is what divViz looks like:
knitr::include_graphics("figures/divViz.png")
If you are interested to see what divViz has to offer without diving into R, click here.
If you are in for the full treat and want to test divViz from within R, run the following in your R session to install the divViz package from Github:
if (!require("remotes")) { install.packages("remotes") } remotes::install_github("RS-eco/divViz") ```` ## Load package Next you will have to load the package ```r library(divViz)
You can now start the divViz Shiny app with:
library(shiny) runApp()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.