aboutsummaryrefslogtreecommitdiff
path: root/man/plot.sparsestep.Rd
diff options
context:
space:
mode:
Diffstat (limited to 'man/plot.sparsestep.Rd')
-rw-r--r--man/plot.sparsestep.Rd26
1 files changed, 26 insertions, 0 deletions
diff --git a/man/plot.sparsestep.Rd b/man/plot.sparsestep.Rd
new file mode 100644
index 0000000..739906d
--- /dev/null
+++ b/man/plot.sparsestep.Rd
@@ -0,0 +1,26 @@
+% Generated by roxygen2 (4.1.1): do not edit by hand
+% Please edit documentation in R/plot.sparsestep.R
+\name{plot.sparsestep}
+\alias{plot}
+\alias{plot.sparsestep}
+\title{Plot the SparseStep path}
+\usage{
+\method{plot}{sparsestep}(x, ...)
+}
+\arguments{
+\item{x}{a \code{sparsestep} object}
+
+\item{\dots}{further argument to matplot}
+}
+\description{
+Plot the coefficients of the SparseStep path
+}
+\examples{
+x <- matrix(rnorm(100*20), 100, 20)
+y <- rnorm(100)
+fit <- sparsestep(x, y)
+plot(fit)
+pth <- path.sparsestep(x, y)
+plot(pth)
+}
+