knitr::opts_chunk$set(echo = TRUE, fig.align = "center", table.align = "center", warnings = FALSE)
library(knitr)

Overview

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.

Installation

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)

Shiny app

You can now start the divViz Shiny app with:

library(shiny)
runApp()


RS-eco/divViz documentation built on Aug. 23, 2024, 6:11 p.m.