I'm quite interested in how this would be done in OxCal. I have a similar question, six calendar dates and I want to know if I should consider them a single phase or if there is a gap between them. I've come up with four possible models, and got A_model scores. The model scheme is meant to be like this, where 1-3 are phases, and each row is a date (each column is a model):
################## A ########### A=99
Plot()
{
Sequence()
{
Boundary("Start 1");
Phase("1")
{
C_Date("FC455", 187, 101);
C_Date("FC486", 392, 58);
C_Date("FC29", 822, 61);
C_Date("FC20", 1789, 75);
C_Date("FC460", 1916, 66);
};
Boundary("End 1");
};
};
################## B ########### A=97.1
Plot()
{
Sequence()
{
Boundary("Start 1");
Phase("1")
{
C_Date("FC455", 187, 101);
C_Date("FC486", 392, 58);
C_Date("FC29", 822, 61);
};
Boundary("trans");
Phase("2")
{
C_Date("FC20", 1789, 75);
C_Date("FC460", 1916, 66);
};
Boundary("End 1");
};
};
################## C ########### A=93.8
Plot()
{
Sequence()
{
Boundary("Start 1");
Phase("1")
{
C_Date("FC455", 187, 101);
C_Date("FC486", 392, 58);
};
Boundary("trans");
Phase("2")
{
C_Date("FC29", 822, 61);
C_Date("FC20", 1789, 75);
C_Date("FC460", 1916, 66);
};
Boundary("End 1");
};
};
################## D ########### A=90.2
Plot()
{
Sequence()
{
Boundary("Start 1");
Phase("1")
{
C_Date("FC455", 187, 101);
C_Date("FC486", 392, 58);
};
Boundary("trans1");
Phase("2")
{
C_Date("FC29", 822, 61);
};
Boundary("trans2");
Phase("3")
{
C_Date("FC20", 1789, 75);
C_Date("FC460", 1916, 66);
};
Boundary("End 1");
};
};
Here's where I compute the Bayes Factors
##### Pseudo-Bayes Factors (using R here) ###
# From OxCal
A_A=99
B_A=97.1
C_A=93.8
D_A=90.2
# n= 6 dates for all models
F_model_A <- (A_A/100)^sqrt(6)
F_model_B <- (B_A/100)^sqrt(6)
F_model_C <- (C_A/100)^sqrt(6)
F_model_D <- (D_A/100)^sqrt(6)
# compute F_model as an approximation to a pseudo-Bayes factor
> (F_model_A / F_model_B) ^ sqrt(6)
[1] 1.1233
> (F_model_A / F_model_B) ^ sqrt(6)
[1] 1.1233
> (F_model_A / F_model_C) ^ sqrt(6)
[1] 1.382274
> (F_model_A / F_model_D) ^ sqrt(6)
[1] 1.748123
> (F_model_B / F_model_C) ^ sqrt(6)
[1] 1.230547
> (F_model_B / F_model_D) ^ sqrt(6)
[1] 1.556238
> (F_model_C / F_model_D) ^ sqrt(6)
[1] 1.264672
# Conclusion: Looks like A:D is the most extreme, gaps do exist in the dates.
Is that basically on the right track?