Changes in version 1.2-27 (2026-03-13) Bugfixes o More sensible test output. Changes in version 1.2-26 (2026-03-06) Features o Use REFERENCES.bib. Changes in version 1.2-25 (2026-02-07) Buxfixes o Make sure absence of suggested packages does not break checks. Changes in version 1.2-24 (2025-05-02) Buxfixes o Handle ordinal splitting variables like numeric in .list.rules.party(). o MIA = TRUE failed in rare cases because the principle was applied to nodes w/o missing values in the split variable; spotted by Ben Schneider. o ctree failed when an unordered factor response contained missing values; spotted by Jonathan Rinne. Changes in version 1.2-23 (2024-12-02) Buxfixes o Make sure weights are propagated properly in data\_party. Changes in version 1.2-22 (2024-08-17) Buxfixes o Use R\_Calloc. Changes in version 1.2-21 (2024-07-18) Buxfixes o Rd link problem. Changes in version 1.2-20 (2023-04-14) Buxfixes o density now gives warnings when called with weights, avoid this. o Check for tied p-values fails on M1mac. Changes in version 1.2-19 (2023-03-19) Buxfixes o Fix documentation bug. Changes in version 1.2-18 (2023-03-09) Buxfixes o Register default methods. Changes in version 1.2-17 (2023-02-28) Misc o Update CITATION file. Buxfixes o Allow NA in responses when plotting. Reported by Tyson H. Holmes. Changes in version 1.2-16 (2022-06-20) Buxfixes o Address random CRAN errors (honesty checks). Changes in version 1.2-15 (2021-08-23) Small Improvements o Update reference output. Changes in version 1.2-14 Bugfixes o cforest ignored converged argument. Changes in version 1.2-13 (2021-03-03) Small Improvements o Suggest randomForest. o Test constparty vignette code in tests, to avoid a NOTE about missing RWeka on Solaris. Changes in version 1.2-12 (2021-02-08) New Features o Add method argument to glmtree. The default is to use "glm.fit" (as was hard-coded previously) but this can also be changed, e.g., to "brglmFit" from brglm2 for bias-reduced estimation of generalized linear models. Bugfixes o Fix LaTeX problem. o Better checks for response classes, fixing a bug reported by John Ogawa. o In lmtree and glmtree the "xlevels" attribute for the regressors is preserved in the models fitted within the trees. Thus, predicting for data whose "xlevels" do not match, an error is generated now (as opposed to warning and partially incorrect predictions). Changes in version 1.2-11 (2020-12-09) New Features o Add an experimental implementation of honesty. o Add maxvar argument to ctree_control for restricting the number of split variables to be used in a tree. Bugfixes o all.equal must not check environments. o Non-standard variable names are now handled correctly within extree_data, prompted by . Changes in version 1.2-10 (2020-10-12) Bugfixes o Deal with non-integer minsize in mob. o Handle NAs in .get_psplits. o Fix URLs. Changes in version 1.2-9 (2020-07-10) Bugfixes o Fix an issue with printing of tied p-values. Changes in version 1.2-8 (2020-06-10) Bugfixes o pruning of modelparty objects failed to get the fitted slot right. o In R-devel, c() now returns factors, rendering code in .simplify_pred overly pedantic. Changes in version 1.2-7 (2020-03-06) Bugfixes o NAMESPACE fixes: party is only suggested. Changes in version 1.2-6 (2020-01-30) Bugfixes o Remove warning about response not being a factor in predict.cforest. Reported by Stephen Milborrow. Changes in version 1.2-5 (2019-07-18) Bugfixes o Trying to split in a variable where all observations were missing nevertheless produced a split, as reported by Kevin Ummel. Changes in version 1.2-4 (2019-05-17) Bugfixes o update reference output, fix RNGversion Changes in version 1.2-3 (2019-01-31) New Features o varimp runs in parallel mode, optionally. o weights in cforest can now be used to specify a matrix of weights (number of observations times number of trees) to be used for tree induction (this was always possible in party::cforest. This was advertised in the documentation but actually not implemented so far. Bugfixes o predict did not pay attention to xlev; this caused problems when empty factor levels were removed prior to tree fitting. o nodeprune may have got fitted terminal node numbers wrong, spotted by Jason Parker. Changes in version 1.2-2 (2018-06-05) Bugfixes o In mob() using the cluster argument with a factor variable sometimes lead to NAs in the covariance matrix estimate if empty categories occured in subgroups. The problem had been introduced in version 1.2-0 and has been fixed now. o Methods for the sctest generic from the strucchange package are now dynamically registered if strucchange is attached. Alternatively, the methods can be called directly using their full names sctest.constparty and sctest.modelparty. o The prune.modelparty function is now fully exported but it is also registered with the prune generic from rpart. Changes in version 1.2-1 (2018-04-20) New Features o New scale argument for predict in cforest. For simple regression forests, predicting the conditional mean by nearest neighbor weights with scale = TRUE is now equivalent to the aggregation of means. The unscaled version proposed in can be obtained with scale = FALSE. Bugfixes o Bug fix for case weights in mob() in previous version (1.2-0) introduced a bug in the handling of proportionality weights. Both cases are handled correctly now. o glmtree can now handle caseweights = TRUE correctly for vcov other than the default "opg". Internally, the glm objects are adjusted by correcting the dispersion estimate and the degrees of freedom. o lookahead did not work in the presence of missing values. o Calling partykit::ctree did not work when partykit was not attached. o node_inner now allows to set a different gpar(fontsize = ...) in the inner nodes compared to the overall tree. o splittest asked for Monte-Carlo p-values, even when the test statistic was used as criterion. Changes in version 1.2-0 (2017-12-18) New Features o We welcome Heidi Seibold as co-author! o Internal re-organisation for ctree by means of new extensible tree infrastructure (available in extree_data and extree_fit). Certain parts of the new infrastructure are still experimental. ctree is fully backward compatible. o Use libcoin for computing linear test statistics and p-values for ctree. o Use inum for binning (the new nmax argument). o Quadratic test statistics for splitpoint selection are now available for ctree via ctree_control(splitstat = "quadratic"). o Maximally selected test statistics for variable selection are now available for ctree via ctree_control(splittest = TRUE). o Missing values can be treated as a separate category, also for splits in numeric variables in ctree via ctree_control(MIA = TRUE). o Permutation variable importance, including conditional variable importance, was added to partykit. o New offset argument in ctree. o New get_paths for computing paths to nodes. o node_barplot gained a text argument that can be used to draw text labels for the percentages displayed. o The margins used in plot.party can now also be set by the user. Bugfixes o Bug fix in mob() if weights are used and caseweights = TRUE (the default). The statistics for the parameter instability tests were computed incorrectly and consequently the selection of splitting variables and also the stopping criterion were affected/incorrect. o Avoid log(p) values of -Inf inside mob() by replacing weighted averaging with naive averaging in the response surface regression output in case the p values are below machine precision. o The as.party method for rpart objects without any splits only returned a naked partynode rather than a full party. This has been corrected now. o nodeapply did not produce the same results for permutations of ids. Spotted by Heidi Seibold. o Out-of-bag predictions in predict.cforest were incorrect. o perm in predict was only considered when newdata was given. Spotted by Heidi Seibold. o Don't try to search for binary splits in unordered factors with more than 31 levels. This potentially caused an integer overrun in previous versions. party::ctree() uses an approximation for binary split searches in unordered factors; thus, using party might be an alternative. Changes in version 1.1-1 (2016-09-20) o Proper support of quasi-families in glmtree and hence palmtree. o NA handling by following the majority was potentially incorrect in ctree. o Minor speed improvements. o Breaking ties before variable selection was suboptimal for very small log-p-values. Changes in version 1.1-0 (2016-07-14) o Added a new function palmtree that fits partially additive (generalized) linear model trees. These employ model-based recursive partitioning (mob) based on (generalized) linear models with some local (i.e., leaf-specific) and some global (i.e., constant throughout the tree) regression coefficients. o Splits in ordinal variables are now represented correctly in the (still internal) list.rule method. o Kaplan-Meier curves in "constparty" trees were plotted incorrectly due to use a wrong scaling of the x-axis. Spotted by Peter Calhoun . o Use quote(stats::model.frame) instead of as.name("model.frame"). o The as.party methods for rpart and Weka_tree now have a data = TRUE argument so that by default the data is preserved in the party object (instead of an empty model frame). o The predict method for cforest objects did not work for one-row data frames, fixed now. o Added rot and just arguments to node_barplot for more fine control of x-axis labeling (e.g., with 45 degree rotation). Changes in version 1.0-5 (2016-02-05) o The partykit package has now been published in _Journal of Machine Learning Research_, 16, 3905-3909. o Added support for setting background in panel functions. o The as.list() method for partynode objects erroneously created an object thisnode in the calling environment which is avoided now. Changes in version 1.0-4 (2015-09-29) o Bug fix in plot() method for constparty objects. In the previous partykit version clipping was accidentally also applied to the axes labels. o For constparty objects plot(..., type = "simple") did not work correctly whereas plot(as.simpleparty(...)) yielded the desired visualization. Now internally as.simpleparty() is called also in the former case. o The as.simpleparty() method now preserves p-values from constparty objects (if any). o Added a getCall() method for "party" objects. o In the predict() method for "lmtree" and "glmtree" objects the offset (if any) was sometimes ignored. It is now always used in the prediction. Changes in version 1.0-3 (2015-08-14) o Import logrank_trafo from coin. Changes in version 1.0-2 (2015-07-28) o nodeprune(..., ids = 1) did not prune the tree to the root node. Fixed now. o predict.cforest used na.omit instead of na.pass. o predict.party now features new perm argument for permuting splits in specific variables (useful for computing permutation variable importances). o NAMESPACE updates. Changes in version 1.0-1 (2015-04-08) o The support for (generalized) linear model trees with just a constant regressor has been improved. Now lmtree(y ~ x1 + x2) is short for lmtree(y ~ 1 | x1 + x2), analogously for glmtree(). Plotting now also works properly in this case. o The as.party() method for "rpart" objects did not work if one of the partitioning variables was a "character" variable rather than a "factor". A suitable work-around has been added. o The node_barplot() panel function can now also be used for multivariate responses, e.g., when all responses are numeric and on the same scale. o The package now also includes a new data set HuntingSpiders which is essentially a copy of the spider data from the package mvpart that is currently archived on CRAN. The documentation has been improved somewhat and is likely to change further to explain how the data has been transformed in De'ath (2002). o The survival tree example for the GBSG2 data was broken due to the response being (incorrectly) also part of the explanatory variables. Fixed by using the latest Formula package (at least version 1.2-1). Changes in version 1.0-0 (2015-02-21) o Version 1.0-0 published. This version is described in the MLOSS paper accepted for publication by the Journal of Machine Learning Research today. o The unbiased version of cforest (with replace = FALSE) is now the default (as in party). o Register all S3 methods in NAMESPACE. Changes in version 0.8-4 (2015-01-07) o Extended mob() interface by a cluster argument. This can be a vector (numeric, integer, factor) with cluster IDs that are then passed on to the 'fit' function (if supported) and used for clustering the covariance matrix in the parameter stability tests. lmtree() and glmtree() hence both gained a cluster argument which is used only for cluster covariances but not for the model estimation (i.e., corresponding to a working independence model). o Optionally, the parameters' variance-covariance matrix in mob() can now be estimated by the sandwich matrix instead of the default outer-product-of-gradients (OPG) matrix or the information matrix. o Reimplementation of cforest() available with extended prediction facilities. Both the internal representation and the user interface are still under development are likely to change in future versions. o Added multicore support to mob(), ctree(), and cforest(). If control argument cores is specified (e.g., cores = 4) then the search for the best variable or split point (often involving numerous model fits in mob() or resampling in ctree()) is carried out using parallel::mclapply() rathern than sequential for() or sapply(). Additionally, other applyfuns can be provided, e.g., using networks of workstations etc. o Bug fix in mob() that occurred when regressor variables and partitioning variables overlapped and were not sorted in the underlying model frame. Changes in version 0.8-3 (2014-12-15) o mvpart was archived 2014-12-15. Changes in version 0.8-2 (2014-09-12) o Fixed an uninitialized memory issue reported by valgrind. Changes in version 0.8-1 (2014-09-08) o partykit now depends on R version >= 3.1.0 in order to import the depth() generic from the grid package. o The print methods for party/partynode objects with only a root node was modified. Now, the terminal panel function is also applied if there is only a root node (while previously it was not). o ctree() now catches sum(weights) <= 1 situations before they lead to an error. o Code from suggested packages is included by using :: syntax as required by recent R versions. o Argument ytrafo of ctree() can now be a function which will be updated in every node. o A small demo briefly illustrating some memory and speed properties has been added. It can be run interactively via demo("memory-speed", package = "partykit"). o Section 3 of the "constparty" vignette now shows how properties of a new tree algorithm can be assessed by using partykit building blocks. Changes in version 0.8-0 (2014-03-27) o Major improved version of partykit. The previously existing functions in the package were tested and enhanced, new functions and extensive vignettes added. o Extended and improved introductory documentation. The basic classes and class constructors partynode/partysplit/party are introduced in much more detail now in vignette("partykit", package = "partykit"). o The class constparty (inheriting from party) for representing party objects with constant fits in the nodes (along with coercion methods for rpart, J48, etc.) is now described in more detail in the new vignette("constparty", package = "partykit"). o The package now includes a reimplementation of the model-based recursive partitioning algorithm (MOB) using partykit infrastructure. The generic algorithm, the corresponding convenience interfaces lmtree() and glmtree() as well as various illustrations and possible extensions are described in detail in the new vignette("mob", package = "partykit"). o Improved implementation of conditional inference trees (CTree), see the new vignette("ctree", package = "partykit") for details. o New nodeprune() generic for pruning nodes in all party trees and partynode objects. o Deal with empty levels in ctree() for teststat = "quad" (bug reported by Wei-Yin Loh ). o In predict() method for constparty objects, type = "prob" now returns ECDF for numeric responses and type = "response" the (weighted) mean. o New panel function node_ecdf() for plotting empirical cumulative distribution functions in the terminal leaves of constparty trees. Changes in version 0.1-6 (2013-09-03) o Bug fix in as.party() method for J48 trees with ordered factors. Changes in version 0.1-5 (2013-03-22) o Fix C code problems reported by clang under OS X. Changes in version 0.1-4 (2012-06-05) o Added node_surv() for plotting survival ctrees. Accompanying infrastructure for survival trees was enhanced. o ctree() now checks for (and does not allow) x >= max(x) splits. Changes in version 0.1-3 (2012-01-11) o Added ipred to the list of suggested packages due to usage of GlaucomaM and GBSG2 data in tests/examples. Changes in version 0.1-2 (2011-12-18) o The node_terminal() panel-generating function is now customizable by a FUN argument that is passed to formatinfo(). o The plot() method for simpleparty object now sets up a formatting function passed to formatinfo(), both in print() and plot(). o Fixed bug in pmmlTreeModel() for processing label IDS in splits when not all levels are present. o Cleaned up unused variables in C code and partial argument matching in R code. Changes in version 0.1-1 (2011-09-29) o First CRAN release. o See vignette("partykit", package = "partykit") for a (somewhat rough) introduction to the package and its classes/methods.