csUTh | R Documentation |
csUTh calculates closed-system Th-230/U ages, including detrital correction.
csUTh( input_data, sample_name = "YP003", nbitchoice = 1000, detcorrectionchoice = TRUE, R28det = 0.8, R28det_err = 0.4, R08det = 1, R08det_err = 0.05, R48det = 1, R48det_err = 0.02, keepfiltereddata = FALSE, print_age = TRUE, with_plots = TRUE, save_plots = TRUE, save_output = FALSE )
input_data |
Input data frame. The following columns need to be present in this data frame, with these exact names: Sample_ID, U234_U238, U234_U238_2SE, Th230_U238, Th230_U238_2SE, Th232_U238, Th232_U238_2SE. |
sample_name |
Name of the sample to calculate closed-system ages for. The string entered must match characters for the chosen sample in the column 'Sample_ID' of the data file. Default: 'MK16'. |
nbitchoice |
Number of iterations in the model. Recommended to have at least 100. Default: 100. |
detcorrectionchoice |
Do a detrital correction? Enter TRUE for yes, or FALSE for no. Default: TRUE |
R28det |
(232Th/238U) activity ratio of the detritus. Default: 0.8 |
R28det_err |
Error on the (232Th/238U) activity ratio of the detritus. Default: 0.4 |
R08det |
(230Th/238U) activity ratio of the detritus. Default: 1 |
R08det_err |
Error on the (230Th/238U) activity ratio of the detritus. Default: 0.05 |
R48det |
(234U/238U) activity ratio of the detritus. Default: 1 |
R48det_err |
Error on the (234U/238U) activity ratio of the detritus. Default: 0.02 |
keepfiltereddata |
Save filtered data on which an outlier test was performed? Only recommended if all analyses of a same sample are supposed to give the same age. Enter TRUE for yes, or FALSE for no. Default: FALSE |
print_age |
Print a summary of the output to the console? Default: TRUE |
with_plots |
Draw plots? Default: TRUE |
save_plots |
Save plots as a png file to the current working directory? Default: TRUE |
save_output |
Save output data as a CSV file to the current working directory? Default: FALSE |
data("Pan2018") # Solve for sample YP003 output <- csUTh(Pan2018, sample_name = 'YP003', nbitchoice = 100, detcorrectionchoice = TRUE, keepfiltereddata = FALSE, print_age = TRUE, with_plots = FALSE, save_plots = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.