# Calibration of a single determination expressed as 14C age BP
calib <- CalibrateSingleDetermination(860, 35, intcal20)
plot(calib, type = "l", xlim = c(1000, 600))
# Incorporating an automated plot to visualise the calibration
CalibrateSingleDetermination(860, 35, intcal20, plot_output = TRUE)
# Calibration of a single (old) determination expressed as 14C age BP
calib <- CalibrateSingleDetermination(31020, 100, intcal20)
plot(calib, type = "l", xlim = c(36500, 34500))
# Calibration of a single (old) determination expressed as F14C concentration
calib <- CalibrateSingleDetermination(
0.02103493, 0.0002618564, intcal20, F14C_inputs = TRUE)
plot(calib, type = "l", xlim = c(36500, 34500))
# Calibration of a single determination expressed as 14C age BP
# against SHCal20 (and creating an automated plot)
CalibrateSingleDetermination(1413, 25, shcal20, plot_output = TRUE)
# Implementing a bespoke confidence interval level and plot in AD
CalibrateSingleDetermination(
1413,
25,
shcal20,
plot_output = TRUE,
plot_cal_age_scale = "AD",
interval_width = "bespoke",
bespoke_probability = 0.8)
# Changing denscale (so the calendar age density takes up less space)
CalibrateSingleDetermination(
1413,
25,
shcal20,
plot_output = TRUE,
interval_width = "bespoke",
bespoke_probability = 0.8,
denscale = 5)
Run the code above in your browser using DataLab