modified syntax for estimation option plot_priors + addition to manual

time-shift
Michel Juillard 2011-01-20 17:33:00 +01:00
parent f83d7db907
commit 2985413ac6
2 changed files with 11 additions and 1 deletions

View File

@ -3188,6 +3188,16 @@ end;
<term><option>loglinear</option></term>
<listitem><para>Computes a log--linear approximation of the model instead of a linear approximation. The data must correspond to the definition of the variables used in the model. Default: computes a linear approximation</para></listitem>
</varlistentry>
<varlistentry>
<term><option>plot_priors</option> = <replaceable>INTEGER</replaceable></term>
<listitem><para>Control the plotting of priors:
<itemizedlist>
<listitem><para><literal>0</literal>: no prior plot</para></listitem>
<listitem><para><literal>1</literal>: prior density for each estimated parameter is plotted. It is important to check that the actual shape of prior densities matches what you have in mind. Ill choosen values for the prior standard density can result in absurd prior densities.</para></listitem>
</itemizedlist>
Default value is <literal>1</literal>.
</para></listitem>
</varlistentry>
<varlistentry>
<term><option>nograph</option></term>
<listitem><para>No graphs should be plotted</para></listitem>

View File

@ -1754,7 +1754,7 @@ o_constant : CONSTANT { driver.option_num("noconstant", "0"); };
o_noconstant : NOCONSTANT { driver.option_num("noconstant", "1"); };
o_mh_recover : MH_RECOVER { driver.option_num("mh_recover", "1"); };
o_diffuse_filter: DIFFUSE_FILTER {driver.option_num("diffuse_filter", "1"); };
o_plot_priors: PLOT_PRIORS {driver.option_num("plot_priors", "1"); };
o_plot_priors: PLOT_PRIORS EQUAL INT_NUMBER {driver.option_num("plot_priors", $3); };
o_aim_solver: AIM_SOLVER {driver.option_num("aim_solver", "1"); };
o_partial_information : PARTIAL_INFORMATION {driver.option_num("partial_information", "1"); };