Hello fellow OxCal users!
I have a couple of questions about the proper application of Outlier_Model() and trying to account for offsets between dates.
-
I am unclear on where exactly in the code the Outlier_Model() should be placed. Should it be placed within a Sequence() or can it be placed before (if the same model should be applied to all parts of a code)? I tried the following code based on some supplementary
information in other articles and received the warning that Outlier_Model() had not been set (see screenshot).
Options()
{
Curve="SHCal20.14c";
};
Plot()
{
Outlier_Model("General", T(5), U(0,4), "t");
Sequence("Cerro Ñañañique - Panecillo")
{
Boundary('Panecillo')
{
color = "blue";
};
Phase()
{
KDE_Plot('Start Panecillo')
{
R_Date('OBDY-81',2540,250)
{
Outlier("General", 0.05);
};
R_Date('OBDY-172',2420,670)
{
Outlier("General", 0.05);
};
R_Combine("Combine Sample 88-5")
{
Outlier("General", 0.05);
R_Date('OBDY-NA',2220,170)
{
Outlier("General", 0.05);
};
R_Date('OBDY-564',2634,160)
{
Outlier("General", 0.05);
};
};
R_Date('OBDY-256',2380,160)
{
Outlier("General", 0.05);
};
R_Combine("Combine Sample 88-6")
{
Outlier("General", 0.05);
R_Date('OBDY-557',2640,160)
{
Outlier("General", 0.05);
};
R_Date('OBDY-853',2850,50)
{
Outlier("General", 0.05);
};
};
};
Interval('Duration Panecillo');
};
Boundary('End Panecillo')
{
color = "red";
};
};
};
-
With a different series of radiocarbon dates, I am trying to incorporate dates measured on both apatite and collagen fractions of bone into a phased model. I dated one bone using both fractions and found that the apatite fraction is 80 C14 years “younger” than
the collagen fraction. Because of this, I would like to try to account for this offset within the phase model to make sure that apatite measurements aren’t pushing things earlier than they should. Is there a way to make this correction? I have tried
N(“appcorr”, -80, 20);
Shift(Shited Date, Apatite date, appcorr)
This does move the apatite dates back towards what I would expect them to be, but feels slightly arbitrary.
I appreciate the help!
Sarah