Nothing
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
getRemoteDataAPI()
retrieves the API to query the datagetMappingAPI()
calls the mapping for the fields needed from the user API callsgetDatabaseList()
returns a list of database names linked to the API callcallAPI()
initiates the request to call library(IsoMemo) getDatabaseList() # returns a character format of list of database names linked to the API call
df = getData(db = "IntChron", category = "Location", field = "latitude", mapping = "IsoMemo") # see latitude and longitude of each site summary(df)
The function below retrieves ALL data and fields from all existing databases.
# ALL_DATA = getData() # print(nrow(ALL_DATA)) # check how many rows # levels(ALL_DATA$source) # check all the database sources are there
getDatabaseList() # tells what database are currently published df1 = getData('LiVES') summary(df1)
How is the distribution of the variable "d15N" isotope?
hist(df1$d15N)
Let's see the linear relationship between variables d13C and d15N:
df1 <- na.omit(df1) lm(d13C~d15N,data=df1)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.