summary of an ideal object
Provides a summary of the output from ideal point estimation contained
in an object of class ideal
.
## S3 method for class 'ideal' summary(object, prob=.95, burnin=NULL, sort=TRUE, include.beta=FALSE,...)
object |
an object of class |
prob |
scalar, a proportion between 0 and 1, the content of the highest posterior density (HPD) interval to compute for the parameters |
burnin |
of the recorded MCMC samples, how many to discard as
burnin? Default is |
sort |
logical, default is |
include.beta |
whether or not to calculate summary statistics of
beta, if beta is available. If the item parameters were not stored
in the |
... |
further arguments passed to or from other functions |
The test of whether a given discrimination parameter is
distinguishable from zero first checks to see if the two most extreme
quantiles
are symmetric around .5 (e.g., as are the default
value of .025 and .975). If so, the corresponding quantiles of the
MCMC samples for each discrimination parameter are inspected to see if
they have the same sign. If they do, then the corresponding
discrimination parameter is flagged as distinguishable from zero;
otherwise not.
An item of class summary.ideal
with elements:
object |
the name of the ideal object as an
|
xm |
|
xsd |
|
xHDR |
|
bm |
|
bsd |
|
bHDR |
|
bSig |
a |
party.quant |
if party information is available through the
|
When specifying a value of burnin
different from that used
in fitting the ideal
object, note a distinction
between the iteration numbers of the stored iterations, and the
number of stored iterations. That is, the n
-th iteration
stored in an ideal
object will not be iteration
n
if the user specified thin>1
in the call to
ideal
. Here, iterations are tagged with their
iteration number. Thus, if the user called ideal
with
thin=10
and burnin=100
then the stored iterations are
numbered 100, 110, 120, ...
. Any future subsetting via a
burnin
refers to this iteration number.
Simon Jackman simon.jackman@sydney.edu.au
f <- system.file("extdata","id1.rda",package="pscl") load(f) summary(id1) ## Not run: data(s109) cl2 <- constrain.legis(s109, x=list("KENNEDY (D MA)"=c(-1,0), "ENZI (R WY)"=c(1,0), "CHAFEE (R RI)"=c(0,-.5)), d=2) id2Constrained <- ideal(s109, d=2, priors=cl2, ## priors (w constraints) startvals=cl2, ## start value (w constraints) store.item=TRUE, maxiter=5000, burnin=500, thin=25) summary(id2Constrained, include.items=TRUE) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.