Dear Oxcal Users,
I have a number of radiocarbon dates from a short wetland core that has a significant sediment change; multi proxy data indicate this is likely a hiatus.
The radiocarbon data also have some reversals before and after the hiatus.
I want to perform outlier analysis prior to building my deposition model to help in determining which dates to keep within the model, but I keep getting a warning stating that no boundaries are used.
I have been trying to work out the where the problem lies, I have come back to it with fresh eyes over several days now and tried various tweaks, but to no avail.
I am not sure where I have erred in placing my boundaries..
(The postbomb age is clearly problematic but I have tried the code with and without it. When I remove the postbomb age I get the warning no boundaries and zero distribution errors
When I leave it in get the warning no boundaries and warning can not determine value errors.)
I am hoping someone would be kind enough to look at my code? No doubt it is glaringly obvious but at this point I can't see the wood for the trees!
Sincerely and appreciatively,
Michelle
Plot()
{
Outlier_Model("General", T(5), U(0,4),"t");
P_Sequence ("KN_1A",1,0.2)
{
Boundary ("bottom core")
{
z=43;
};
Sequence ("phase 2")
{
R_Date("SacA 33590", 1190, 80)
{
Outlier();
z=42.5;
};
R_Date("SacA 33589", 1055, 30)
{
Outlier();
z=37.75;
};
R_Date("Beta 463029", 1660, 30)
{
Outlier();
z=32.5;
};
Boundary ("phase 2: abrupt contact/change in sed type")
{
z=31;
};
};
Interval("hiatus period");
P_Sequence ("phase 1",1,0.2)
{
Boundary ("End hiatus")
{
z=31;
};
Sequence ("phase 1 start")
{
R_Date("Beta 463028", 730, 30)
{
Outlier();
z=30.5;
};
R_Date("Beta 323990", 270, 30)
{
Outlier();
z=28.5;
};
R_Date("Beta 463027", 540, 30)
{
Outlier();
z=22.5;
};
R_F14C("SacA 33588",1.0912,0.0024)
{
Outlier();
z=11.75;
};
Boundary("Field date",U(2010,2011))
{
z=0;
};
};
};
};
};
};
};