# NOT RUN {
#' # Acquire "BSea" data set
data(BSea)
# Compute Delta R values and store them in the new object
# Note, that samples with known collection date need "shell" method
bsea_res <- dr_df(BSea, method = "shell")
# See basic statistics of the computed Delta R values
bsea_res$statistics
# }
# NOT RUN {
# Acquire "adak" data set
data(adak)
# Compute Delta R values and store them in the new object
adak_res <- dr_df(adak)
# See basic statistics of the computed Delta R values
adak_res$statistics
# Save the results in the file "Adak.txt"
write.table(adak_res$statistics, "Adak.txt")
# Note, that it will be saved in the working directory
# See the path to the working directory
getwd()
# Acquire "coral" data set
data(coral)
# Compute Delta R values and store them in the new object
# Note, that 230Th dates do not need calibration
coral_res <- dr_df(coral, calCurves = "normal")
# See basic statistics of the computed Delta R values
coral_res$statistics
# }
Run the code above in your browser using DataLab