## 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)
unseiji_ST61_C.mds <- mds(
tooth = "C",
rt.y = unseiji_ST61_C$rt.y,
ecj = unseiji_ST61_C$ecj,
section.y = unseiji_ST61_C$section.y,
n.GL = 100)
unseiji_ST61_C.cca <- cca(
x = unseiji_ST61_C.mds,
t.start = unseiji_ST61_C$t.start,
t.end = unseiji_ST61_C$t.end)
# Plot C and M1 modeled age ranges with stable nitrogen isotope ratios.
PlotSections(
age = list(
unseiji_ST61_C$section$age,
unseiji_ST61_M1$section$age),
delta = list(
unseiji_ST61_C$section$d15N,
unseiji_ST61_M1$section$d15N),
obj = list(
C = unseiji_ST61_C.cca,
M1 = unseiji_ST61_M1.cca))
# Plot the same data with different colors.
PlotSections(
age = list(
unseiji_ST61_C$section$age,
unseiji_ST61_M1$section$age),
delta = list(
unseiji_ST61_C$section$d15N,
unseiji_ST61_M1$section$d15N),
obj = list(
C = unseiji_ST61_C.cca,
M1 = unseiji_ST61_M1.cca),
col = c("red", "blue"),
pch = c(1, 2))
Run the code above in your browser using DataLab