Learn R Programming

⚠️There's a newer version (0.2.37) of this package.Take me there.

bdvis

About

Biodiversity Data Visualizations using R. This package offers a set of functions to visualize biodiversity occurrence data through R. The development of the package started as a Google Summer of Code project. The detailed proposal is available on this blog entry.

Installation

Install the latest version using install_github within Hadley's devtools package.

install.packages("devtools") 
require(devtools)
install_github("vijaybarve/bdvis") 
require(bdvis) 

Note:

Windows users have to first install Rtools.

Packages bdvis depends on

Packages bdvis suggests

(for the purpose of building examples)

Functions currently available

For the sake of examples, we will work with some data obtained using the package rinat

install.packages("rinat") 
require(rinat)  # Data download might take some time
inat=get_inat_obs_project("reptileindia") 
inat=format_bdvis(inat,source='rinat')

bdsummary

bdsummary(inat) 

mapgrid

mapgrid(inat,ptype="records",bbox=c(60,100,5,40),region=c("India")) 

tempolar

tempolar(inat, color="green", title="iNaturalist daily", plottype="r", timescale="d") 
tempolar(inat, color="blue", title="iNaturalist weekly", plottype="p", timescale="w") 
tempolar(inat, color="red", title="iNaturalist monthly", plottype="r", timescale="m") 

taxotree

inat=gettaxo(inat) 
taxotree(inat) 

chronohorogram

chronohorogram(inat) 

bdcomplete

comp=bdcomplete(inat,recs=5)
mapgrid(comp,ptype="complete",bbox=c(60,100,5,40),region=c("India"))

distrigraph

distrigraph(inat,ptype="cell",col="tomato") 
distrigraph(inat,ptype="species",ylab="Species") 
distrigraph(inat,ptype="efforts",col="red") 
distrigraph(inat,ptype="efforts",col="red",type="s") 

bdcalendarheat

bdcalendarheat(inat) 

Copy Link

Version

Install

install.packages('bdvis')

Monthly Downloads

146

Version

0.2.9

License

GPL-3

Maintainer

Vijay Barve

Last Published

November 20th, 2016

Functions in bdvis (0.2.9)

bdwebmap

Interactive web page based map of records
format_bdvis

Prepare data frame for flagging functions
getcellid

Assign GBIF style degree cell ids
distrigraph

Distribution graphs
chronohorogram

Draws a chronohorogram of records
fixstr

Change structure of the data frame according to the package's needs
bdcalendarheat

Calendar heat map of biodiversity data
bdcomplete

Computes completeness values of the dataset
gettaxo

Get higher taxonomy data
mapgrid

Maps the data points on the map in grid format
bdsummary

Provides summary of biodiversity data
bdvis

bdvis: Biodiversity Data Visualizations
tempolar

Polar plot of temporal data
taxotree

Treemap based on taxonomic hierarchy of records