Changes in version 0.2-23 (2020-03-05) o /bin/sh is portable Changes in version 0.2-22 (2018-07-16) o inst/NEWS exclusively Changes in version 0.2-21 (2013-09-02) o export ParseFormula Changes in version 0.2-20 (2013-09-02) o fix NAMESPACE issues Changes in version 0.2-19 (2012-01-31) o added model.matrix.survReg Changes in version 0.2-17 (2010-09-13) o COPYING -> LICENSE Changes in version 0.2-16 (2008-10-01) o inputs make be NULL (in complete.cases.*) o new generic `relabel' Changes in version 0.2-15 (2008-05-09) o `Predict' didn't pass ... to `predict' o new generic and method `empty' o the `show' method now prints the number of columns if a data object has no colnames. o renamed `cluster' to `clusters' to avoid conflict with `cluster' from package survival Changes in version 0.2-14 (2007-09-26) o `object' in `Predict(object)' might be an S4 object and $ can't be used. Changes in version 0.2-13 (2007-09-11) o new generic Lapply Changes in version 0.2-12 (2007-05-07) o fix Rd problems Changes in version 0.2-11 (2007-04-25) o added argument newdata to generic cluster() o LazyLoad: yes Changes in version 0.2-10 (2007-01-11) o Added several generic functions: ICL, KLdiv, cluster, getModel, parameters, posterior, prior, refit, info, infoCheck o fix problems with evaluating subset arguments Changes in version 0.2-9 (2006-11-03) o the following code didn't work tmp <- function(formula, data = list(), subset = NULL) ModelEnvFormula(formula, data, subset = subset, frame = parent.frame()) foo <- function(x, y, ...) tmp(y ~ x, ...) a <- 1:10 b <- 1:10 stopifnot(identical(foo(a, b, subset = 1:5)@get("response")[[1]],1:5)) ### was: couldn't find `y' when `frame' wasn't specified x <- 1 y <- 2 stopifnot(identical(foo(a, b, subset = 1:5)@get("response")[[1]],1:5)) ### was: found `x' and `y' in .GlobalEnv when `frame' wasn't specified Changes in version 0.2-8 (2006-10-27) o ModelEnvFormula(y ~ 1) works now o new function MEapply (only roughly documented, more to come) Changes in version 0.2-7 (2006-09-07) o add methods and stats to Depends: Changes in version 0.2-6 (2006-08-24) o fix codetools problems Changes in version 0.2-5 (2006-08-23) o import(stats) Changes in version 0.2-4 (2006-04-12) o add survReg objects as an interface to survival::survreg Changes in version 0.2-3 (2006-02-16) o checkData does no longer insist that columns of a new data frame are in the same order as in the original data frame. o fxied a bug in the show() method for ModelEnv objects o new ModelEnv creator function ModelEnvMatrix o `linearModel@fit' now returns an object of class `linearModel' o `glinearModel' object added o S3 methods for (g)linearModel objects added (fitted, model.matrix, ...) Changes in version 0.2-2 (2005-11-29) o remove special code for `Surv' objects in ParseFormula Changes in version 0.2-0 (2005-06-15) o `Predict' checks for `StatModel' objects being available o `linearModel@fit' now returns an object of class `statmodel_lm' which inherits from `lm' and has its own `predict' method (in S3) o prepare for CRAN submission Changes in version 0.1-2 o `set' and `get' functions have an additional `envir' argument. This is now used by `clone', for example. o lmfit now returns a `lm' object with element `predict_response' for computing predictions.