From 6c3d2ff1cb9e7bd3bf1426e1ec4cecd0891ea089 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Wed, 10 Feb 2016 20:19:51 -0500 Subject: bugfixes, documentation improvements, and generic function agreement --- man/print.sparsestep.Rd | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'man/print.sparsestep.Rd') diff --git a/man/print.sparsestep.Rd b/man/print.sparsestep.Rd index ec09981..7e3d9bb 100644 --- a/man/print.sparsestep.Rd +++ b/man/print.sparsestep.Rd @@ -5,19 +5,20 @@ \alias{print.sparsestep} \title{Print the fitted SparseStep model} \usage{ -\method{print}{sparsestep}(obj, ...) +\method{print}{sparsestep}(x, ...) } \arguments{ -\item{obj}{a "sparsestep" object to print} +\item{x}{a "sparsestep" object to print} + +\item{...}{further argument are ignored} } \description{ Prints a short text of a fitted SparseStep model } \examples{ -data(diabetes) -attach(diabetes) -object <- sparsestep(x, y) -print(object) -detach(diabetes) +x <- matrix(rnorm(100*20), 100, 20) +y <- rnorm(100) +fit <- sparsestep(x, y) +print(fit) } -- cgit v1.2.3