Learn R Programming

neotoma (version 1.3.0)

bind: Function to bind objects together into a longer object.

Description

From multiple download*s, dataset*s or sites, join them together into a single object.

Usage

bind(x, ...)

Arguments

x
An object returned by one of the get_* commands for download, site or dataset.
...
other objects of the same class.

Value

  • This command returns a larger list.

Details

To support further synthesis and analysis compile_download works to transform a list returned by get_download into a large data frame with columns for site and sample attributes and also with the associated assemblage data at each sample depth. This function also does the same for single sites.

References

Neotoma Project Website: http://www.neotomadb.org

Examples

Run this code
#  Search for sites with "Thuja" pollen that are older than 8kyr BP and
#  that are on the west coast of North America:
t8kyr.poa <- get_dataset(taxonname='Thuja*', loc=c(-150, 20, -100, 60), ageyoung = 8000)
t8kyr.canis <- get_dataset(taxonname='Canis*', loc=c(-150, 20, -100, 60), ageyoung = 8000)

t8kyr.co_site <- bind(t8kyr.poa, t8kyr.canis)

Run the code above in your browser using DataLab