Since the original question generated no interest, perhaps someone from SAS could explain why the Example they provide in the software documentation generates errors when you try to run it. Has the Bayes command been disabled for PROC QLIM? proc qlim data=test plots(prior)=all; model TicketSales = WinChance price; endogenous TicketSales ~ censored(lb=0 ub= 50000); prior intercept~normal(mean=48000); prior WinChance~normal(mean=5000); prior Price~normal(mean=-100); bayes NBI=10000 NMC=30000 THIN=1 ntrds=1 DIAG=ALL STATS=ALL seed=2; run;
... View more