## 18 sections for 18 mm lateral incisor
l18_I2_s18.mds <- mds(
tooth = "I",
rt.y = 18,
section.y = 0:18,
n.GL = 100)
l18_I2_s18.cca <- cca(
x = l18_I2_s18.mds,
t.start = 0.5875,
t.end = 10.5)
# Plot corresponding age ranges.
plot(l18_I2_s18.cca)
## Example of the first molar of ST61 from the Unseiji temple.
unseiji_ST61_M1.mds <- mds(
tooth = "M1",
rt.y = unseiji_ST61_M1$rt.y,
ecj = unseiji_ST61_M1$ecj,
section.y = unseiji_ST61_M1$section.y,
n.GL = 100)
unseiji_ST61_M1.cca <- cca(
x = unseiji_ST61_M1.mds,
t.start = unseiji_ST61_M1$t.start,
t.end = unseiji_ST61_M1$t.end)
# Plot modeled age ranges with stable nitrogen isotope ratios.
plot(unseiji_ST61_M1.cca,
age = unseiji_ST61_M1$section$age,
delta = unseiji_ST61_M1$section$d15N,
type = "o")
# Plot without excluded sections with the porous dentin structure.
plot(unseiji_ST61_M1.cca,
age = unseiji_ST61_M1$section$age[1:13],
delta = unseiji_ST61_M1$section$d15N[1:13],
type = "o")
## Irregular sectioning for 20 mm canine.
l20_C_irr.mds <- mds(
tooth = "C",
rt.y = 20,
section.y = c(2:14, 15, 17, 19),
n.GL = 100)
l20_C_irr.cca <- cca(
x = l20_C_irr.mds,
t.start = 0.35,
t.end = 13.5)
# Plot corresponding age ranges.
plot(l20_C_irr.cca, xlim = c(0, 14))
Run the code above in your browser using DataLab