Skip to content

Commit

Permalink
version 0.2-11
Browse files Browse the repository at this point in the history
  • Loading branch information
thothorn authored and gaborcsardi committed Apr 24, 2007
1 parent 09ecbcf commit ba9d058
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@

CHANGES IN `modeltools' VERSION 0.2-11

o added argument newdata to generic cluster()

o LazyLoad: yes

CHANGES IN `modeltools' VERSION 0.2-10

o Added several generic functions: ICL, KLdiv, cluster, getModel, parameters,
Expand Down
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: modeltools
Title: Tools and Classes for Statistical Models
Date: $Date: 2007-01-11 18:42:45 +0100 (Thu, 11 Jan 2007) $
Version: 0.2-10
Date: $Date: 2007-04-24 17:11:43 +0200 (Tue, 24 Apr 2007) $
Version: 0.2-11
Author: Torsten Hothorn, Friedrich Leisch, Achim Zeileis
Maintainer: Torsten Hothorn <Torsten.Hothorn@R-project.org>
Description: A collection of tools to deal with statistical models.
Expand All @@ -12,6 +12,6 @@ Description: A collection of tools to deal with statistical models.
of this proposal. Contributions are more than welcome!
Depends: stats, stats4
Imports: methods
SaveImage: yes
LazyLoad: yes
License: GPL
Packaged: Thu Jan 11 18:53:50 2007; leisch
Packaged: Wed Apr 25 10:38:05 2007; leisch
4 changes: 2 additions & 2 deletions R/Generics.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Copyright (C) 2006 Torsten Hothorn, Friedrich Leisch
# $Id: Generics.R 3126 2006-11-06 16:03:12Z hothorn $
# $Id: Generics.R 3357 2007-03-07 06:58:42Z leisch $
#


Expand All @@ -12,7 +12,7 @@ setGeneric("ICL", function(object, ...) standardGeneric("ICL"))

setGeneric("KLdiv", function(object, ...) standardGeneric("KLdiv"))

setGeneric("cluster", function(object, ...) standardGeneric("cluster"))
setGeneric("cluster", function(object, newdata, ...) standardGeneric("cluster"))

setGeneric("getModel", function(object, ...) standardGeneric("getModel"))

Expand Down
7 changes: 7 additions & 0 deletions inst/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@

CHANGES IN `modeltools' VERSION 0.2-11

o added argument newdata to generic cluster()

o LazyLoad: yes

CHANGES IN `modeltools' VERSION 0.2-10

o Added several generic functions: ICL, KLdiv, cluster, getModel, parameters,
Expand Down
5 changes: 3 additions & 2 deletions man/Generics.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
\usage{
ICL(object, \dots)
KLdiv(object, \dots)
cluster(object, \dots)
cluster(object, newdata, \dots)
getModel(object, \dots)
parameters(object, \dots)
posterior(object, newdata, \dots)
Expand All @@ -33,7 +33,8 @@ refit(object, \dots)
\item{ICL:}{Integrated Completed Likelihood criterion for model
selection.}
\item{KLdiv:}{Kullback-Leibler divergence.}
\item{cluster:}{Extract cluster membership information.}
\item{cluster:}{Get cluster membership information from a model or
compute it for new data.}
\item{getModel:}{Get single model from a collection of models.}
\item{parameters:}{Get parameters of a model (similar to but more
general than \code{\link{coefficients}}).}
Expand Down

0 comments on commit ba9d058

Please sign in to comment.