[Rcpp-commits] r3060 - pkg/RcppArmadillo/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jun 14 00:35:11 CEST 2011


Author: dmbates
Date: 2011-06-14 00:35:11 +0200 (Tue, 14 Jun 2011)
New Revision: 3060

Modified:
   pkg/RcppArmadillo/man/fastLm.Rd
Log:
No need to document print, summary, etc. methods


Modified: pkg/RcppArmadillo/man/fastLm.Rd
===================================================================
--- pkg/RcppArmadillo/man/fastLm.Rd	2011-06-13 22:34:40 UTC (rev 3059)
+++ pkg/RcppArmadillo/man/fastLm.Rd	2011-06-13 22:35:11 UTC (rev 3060)
@@ -3,10 +3,6 @@
 \alias{fastLmPure}
 \alias{fastLm.default}
 \alias{fastLm.formula}
-\alias{print.fastLm}
-\alias{summary.fastLm}
-\alias{print.summary.fastLm}
-\alias{predict.fastLm}
 \concept{regression}
 \title{Bare-bones linear model fitting function}
 \description{
@@ -16,12 +12,9 @@
 \usage{
 fastLmPure(y, X)
 
-fastLm(x, ...)
-\method{fastLm}{default}(x, y, ...)
-\method{fastLm}{formula}(formula, data = list(), ...)
-\method{print}{fastLm}(x, ...)
-\method{summary}{fastLm}(object, ...)
-\method{predict}{fastLm}(object, newdata=NULL, ...)
+fastLm(x, \dots)
+\method{fastLm}{default}(x, y, \dots)
+\method{fastLm}{formula}(formula, data = list(), \dots)
 }
 \arguments{
   \item{y}{a vector containing the explained variable.}
@@ -29,9 +22,6 @@
   \item{x}{a numeric design matrix for the model.}
   \item{formula}{a symbolic description of the model to be fit.}
   \item{data}{an optional data frame containing the variables in the model.}
-  \item{newdata}{an optional data frame containing the variables for
-    which a model prediction is desired.}
-  \item{object}{an object of class \code{"fastLm"}, i.e. a fitted model}
   \item{\ldots}{not used}
 }
 \details{



More information about the Rcpp-commits mailing list