nbn_demonstration_dataset: NBN demonstration dataset

nbn_demonstration_datasetR Documentation

NBN demonstration dataset

Description

This dataset contains sightings of 10 common birds species within three national nature reserves, Monks Wood, Woodwalton Fen and Holme Fen, occuring in or adjacent to TL28 10km grid square, recorded in 2008 for the purpose of demonstrating the functionality of the NBN Gateway. This website collated and made freely available biological species records across the UK. It was superseded in March 2017 by the NBN Atlas.

Usage

nbn_demonstration_dataset

Format

A tibble with 100 rows and 17 variables.

RecordKey

Primary key associated with the occurrence record.

SurveyKey

Identifier key for the survey.

StartDate

Start date of vague date range.

EndDate

End date of vague date range.

DateType

Date type of vague date range.

Sensitive

Whether the record is sensitive or not.

TaxonVersionKey

Identifier key for taxon version in UK Species Inventory.

GridReference

Grid reference of occurrence record.

Precision

Spatial precision of the georeference in metres.

Projection

Projection system for the grid reference.

SiteKey

Identifier key for the site.

SiteName

Name of the site or location where the species was recorded.

Recorder

Name or list of names for one or more recorders for the species record.

Determiner

Name or list of names for one or more determiners for the species record.

Abundance

Attribute field containing number of individuals recorded.

TaxonName

Attribute field containing scientific name of species recorded.

CommonName

Attribute field containing common name of species recorded.

Figures

Sample of 10 rows from nbn_demonstration_dataset dataset.

nbn_demonstration_dataset.png

Examples

suppressPackageStartupMessages({
 suppressWarnings({
  library(dplyr)
  library(gt)
  library(fs)
 })
})

# create figures directory
dir_create(path(tempdir(), "figures"))

# create html table
nbn_demonstration_dataset %>%
  slice_sample(n = 10) %>%
  gt_preview(top_n = 10, incl_rownums = FALSE) %>%
  gtsave(path(tempdir(), "figures", "nbn_demonstration_dataset.html"))

# convert to image
## pagedown::chrome_print cropped the table columns
## manually produced the image from screenshot of html page

gcfrench/store documentation built on May 17, 2024, 5:52 p.m.