Hello Christopher,
Can you help please? I often use a Log Normal Interval to define the waiting time distribution (WTD) between R_dates. This often works well. However It is sometimes possible to obtain real data, say as a csv or spreadsheet file that would be more representative of the distribution.
I've been trying, without success, to incorporate such data into my model. I thought it may be a matter of creating a Prior file of the distribution, but I can't seem to get the data into the right format, or where I should put the original .csv file.
I get 'Warning no data found' and and 'Warning ZERO Distribution'. The model then just calculates the Interval as a query.
I would like the Interval(Actual Distribution) to be calculated afresh each time it is used.
Here is what I normally use:
var(a);
// e.g. the median value
var(b);
// shape nominally 2.
a=26;
b=2.;
Plot()
{
Phase()
{
Sequence("1")
{
R_Date("A", 3700, 28);
Interval(LnN(ln(a),ln(b)););
R_Date("B", 3650, 27);
Sequence("2")
R_Date("B1", 3650, 27);
Interval(LnN(ln(a),ln(b)););
R_Date("A1", 3700, 28);
};
Best wishes
Ray Kidd