A symbolic description of the model to be fit. This should be of type y ~ x1 + x2 where y should be a matrix with items in the columns and observations in the rows and x1 and x2 are used as partitioning variables.
data
a data frame containing the variables in the model.
na.action
a function which indicates what should happen when the data contain missing values (NAs).
nullcats
character. How null categories should be treated. See pcmodel for details.
deriv
character. If "sum" (the default), the first derivatives of the elementary symmetric functions are calculated with the sum algorithm. Otherwise ("diff") the difference algorithm (faster but numerically unstable) is used.
reltol, maxit
arguments passed via pcmodel to optim.
…
arguments passed to the underlying functions, i.e., to mob_control for pctree, and to the underlying predict and plot methods, respectively.
object, x
an object of class “raschtree”.
newdata
optional data frame with partitioning variables for which predictions should be computed. By default the learning data set is used.
type
character specifying the type of predictions or plot. For the predict method, either just the ID of the terminal “node” can be predicted or some property of the model at a given person parameter (specified by personpar).
personpar
numeric person parameter (of length 1) at which the predictions are evaluated.
terminal_panel, tp_args, tnex, drop_terminal
arguments passed to plot.modelparty/plot.party.
Details
Partial credit trees are an application of model-based recursive partitioning (implemented in mob) to partial credit models (implemented in pcmodel). See Komboz et al. (2018) for a detailed discussion. For technical and algorithmic details, see the documentation of the two core functions linked above as well as vignette(“mob”, package = “partykit”).
Various methods are provided for “pctree” objects, most of them inherit their behavior from “modelparty” objects (e.g., print, summary, etc.). For the PCMs in the nodes of a tree, coef extracts all item and threshold parameters except those restricted to be zero. itempar and threshpar extract all item and threshold parameters (including the restricted ones). The plot method by default employs the node_regionplot panel-generating function and the node_profileplot panel-generating function is provided as an alternative.
Value
An object of S3 class “pctree” inheriting from class “modelparty”.
References
Komboz B, Zeileis A, Strobl C (2018). Tree-Based Global Model Tests for Polytomous Rasch Models. Educational and Psychological Measurement, 78(1), 128–166. doi:10.1177/0013164416664394
See Also
mob, pcmodel, rstree, raschtree
Examples
library("psychotree")o<-options(digits =4)## verbal aggression data from package psychotoolsdata("VerbalAggression", package ="psychotools")## use response to the second other-to-blame situation (train)VerbalAggression$s2<-VerbalAggression$resp[, 7:12]## exclude subjects who only scored in the highest or the lowest categoriesVerbalAggression<-subset(VerbalAggression, rowSums(s2)>0&rowSums(s2)<12)## fit partial credit tree modelpct<-pctree(s2~anger+gender, data =VerbalAggression)## print tree (with and without parameters)print(pct)
Partial credit tree
Model formula:
s2 ~ anger + gender
Fitted party:
[1] root
| [2] gender in female: n = 220
| s2S2WantCurse-C2 s2S2DoCurse-C1 s2S2DoCurse-C2 s2S2WantScold-C1
| 1.486 1.169 3.239 1.097
| s2S2WantScold-C2 s2S2DoScold-C1 s2S2DoScold-C2 s2S2WantShout-C1
| 2.903 2.006 4.791 1.618
| s2S2WantShout-C2 s2S2DoShout-C1 s2S2DoShout-C2
| 3.768 3.198 6.705
| [3] gender in male: n = 67
| s2S2WantCurse-C2 s2S2DoCurse-C1 s2S2DoCurse-C2 s2S2WantScold-C1
| 0.5547 -0.2179 -0.1240 0.8065
| s2S2WantScold-C2 s2S2DoScold-C1 s2S2DoScold-C2 s2S2WantShout-C1
| 1.7020 0.2919 1.7719 1.5697
| s2S2WantShout-C2 s2S2DoShout-C1 s2S2DoShout-C2
| 3.6675 2.1006 5.4388
Number of inner nodes: 1
Number of terminal nodes: 2
Number of parameters per node: 11
Objective function (negative log-likelihood): 899.9
Partial credit tree
Model formula:
s2 ~ anger + gender
Fitted party:
[1] root
| [2] gender in female *
| [3] gender in male *
Number of inner nodes: 1
Number of terminal nodes: 2
Number of parameters per node: 11
Objective function (negative log-likelihood): 899.9
## show summary for terminal panel nodessummary(pct)
options(digits =o$digits)## partial credit tree on artificial data from Komboz et al. (2018)data("DIFSimPC", package ="psychotree")pct2<-pctree(resp~gender+age+motivation, data =DIFSimPC)plot(pct2, ylim =c(-4.5, 4.5), names =paste("I", 1:8))