[Archetypes-commits] r41 - in pkg: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Apr 6 15:03:13 CEST 2010


Author: manuel
Date: 2010-04-06 15:03:13 +0200 (Tue, 06 Apr 2010)
New Revision: 41

Modified:
   pkg/DESCRIPTION
   pkg/R/archetypes-class.R
Log:


Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2010-04-06 09:56:13 UTC (rev 40)
+++ pkg/DESCRIPTION	2010-04-06 13:03:13 UTC (rev 41)
@@ -2,8 +2,8 @@
 Type: Package
 Title: Archetypal Analysis
 Version: 2.0
-Date: 2010-04-01
-Depends: methods, modeltools, nnls (>= 1.1)
+Date: 2010-04-06
+Depends: methods, stats, modeltools, nnls (>= 1.1)
 Suggests: MASS, vcd, mlbench
 Author: Manuel J. A. Eugster <manuel.eugster at stat.uni-muenchen.de>
 Maintainer: Manuel J. A. Eugster <manuel.eugster at stat.uni-muenchen.de>
@@ -11,4 +11,4 @@
   archetypal analysis supporting arbitary problem solving mechanisms
   for the different conceputal parts of the algorithm.
 License: GPL (>= 2)
-Revision: 17
+Revision: 41

Modified: pkg/R/archetypes-class.R
===================================================================
--- pkg/R/archetypes-class.R	2010-04-06 09:56:13 UTC (rev 40)
+++ pkg/R/archetypes-class.R	2010-04-06 13:03:13 UTC (rev 41)
@@ -78,6 +78,7 @@
 #' @param ... Ignored.
 #' @return Matrix with approximated data.
 #' @method fitted archetypes
+#' @importFrom stats fitted
 #' @S3method fitted archetypes
 #' @rdname archetypes-class
 fitted.archetypes <- function(object, ...) {
@@ -113,6 +114,7 @@
 #' @param ... Ignored.
 #' @return Coefficient matrix.
 #' @method coef archetypes
+#' @importFrom stats coef
 #' @S3method coef archetypes
 #' @rdname archetypes-class
 coef.archetypes <- function(object, type = c('alphas', 'betas'), ...) {
@@ -126,6 +128,7 @@
 #' @param ... Ignored.
 #' @return Matrix with residuals.
 #' @method residuals archetypes
+#' @importFrom stats residuals
 #' @S3method residuals archetypes
 #' @rdname archetypes-class
 residuals.archetypes <- function(object, ...) {
@@ -171,6 +174,7 @@
 #' @param ... Ignored.
 #' @return Vector of weights.
 #' @method weights archetypes
+#' @importFrom stats weights
 #' @S3method weights archetypes
 #' @rdname archetypes-class
 weights.archetypes <- function(object, type = c('weights', 'reweights'), ...) {



More information about the Archetypes-commits mailing list