kanchukaitis / itrdbMeasurementsClone

A repo to keep a copy of the measurement data from the ITRDB in a R-friendly format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

itrdbMeasurementsClone

A repo to keep a copy of the measurement data from the ITRDB in a R-friendly format

# Here is an example of grabbing a rwl from two rds files. 
# It shows how we can extract a rwl object and its meta info

library(dplR)
rwls <- readRDS("Rdatafiles/rwls.rds")
rwls_meta <- readRDS("Rdatafiles/rwls_meta.rds")

nrow(rwls_meta)
length(rwls)

# the first study
rwls_meta[1,]
aRWL <- rwls[[1]]

rwl.report(aRWL)
summary(aRWL)
plot(aRWL)

About

A repo to keep a copy of the measurement data from the ITRDB in a R-friendly format

License:MIT License


Languages

Language:R 100.0%