diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2017-01-25 14:00:42 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2017-01-25 14:00:42 +0100 |
| commit | 9a2b911add9fb4f247cc63b13478758e740d1a3a (patch) | |
| tree | cfe252c8f778b9be207229cb63026f5742e3eb6f /man | |
| parent | multiply normalize with sqrt(n) to remove dependence on n in normalization (diff) | |
| download | sparsestep-9a2b911add9fb4f247cc63b13478758e740d1a3a.tar.gz sparsestep-9a2b911add9fb4f247cc63b13478758e740d1a3a.zip | |
Add author and reference to each public method documentation
Diffstat (limited to 'man')
| -rw-r--r-- | man/coef.sparsestep.Rd | 11 | ||||
| -rw-r--r-- | man/path.sparsestep.Rd | 11 | ||||
| -rw-r--r-- | man/plot.sparsestep.Rd | 10 | ||||
| -rw-r--r-- | man/predict.sparsestep.Rd | 11 | ||||
| -rw-r--r-- | man/print.sparsestep.Rd | 11 | ||||
| -rw-r--r-- | man/sparsestep-package.Rd | 9 | ||||
| -rw-r--r-- | man/sparsestep.Rd | 11 |
7 files changed, 73 insertions, 1 deletions
diff --git a/man/coef.sparsestep.Rd b/man/coef.sparsestep.Rd index 578b75c..4d713b5 100644 --- a/man/coef.sparsestep.Rd +++ b/man/coef.sparsestep.Rd @@ -25,5 +25,16 @@ x <- matrix(rnorm(100*20), 100, 20) y <- rnorm(100) fit <- sparsestep(x, y) coef(fit) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } diff --git a/man/path.sparsestep.Rd b/man/path.sparsestep.Rd index 4d90956..935d17b 100644 --- a/man/path.sparsestep.Rd +++ b/man/path.sparsestep.Rd @@ -87,6 +87,17 @@ Note that this path algorithm is not faster than running the x <- matrix(rnorm(100*20), 100, 20) y <- rnorm(100) pth <- path.sparsestep(x, y) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } \seealso{ \code{\link{coef}}, \code{\link{print}}, \code{\link{predict}}, diff --git a/man/plot.sparsestep.Rd b/man/plot.sparsestep.Rd index 739906d..88c8d67 100644 --- a/man/plot.sparsestep.Rd +++ b/man/plot.sparsestep.Rd @@ -23,4 +23,14 @@ plot(fit) pth <- path.sparsestep(x, y) plot(pth) } +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. +} diff --git a/man/predict.sparsestep.Rd b/man/predict.sparsestep.Rd index 74abfaf..8318c34 100644 --- a/man/predict.sparsestep.Rd +++ b/man/predict.sparsestep.Rd @@ -27,5 +27,16 @@ x <- matrix(rnorm(100*20), 100, 20) y <- rnorm(100) fit <- sparsestep(x, y) yhat <- predict(fit, x) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } diff --git a/man/print.sparsestep.Rd b/man/print.sparsestep.Rd index 4d194b5..2baa6bc 100644 --- a/man/print.sparsestep.Rd +++ b/man/print.sparsestep.Rd @@ -20,5 +20,16 @@ x <- matrix(rnorm(100*20), 100, 20) y <- rnorm(100) fit <- sparsestep(x, y) print(fit) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } diff --git a/man/sparsestep-package.Rd b/man/sparsestep-package.Rd index 308d915..67ca27d 100644 --- a/man/sparsestep-package.Rd +++ b/man/sparsestep-package.Rd @@ -35,6 +35,13 @@ model} } } \author{ -Gertjan van den Burg (author and maintainer). +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } diff --git a/man/sparsestep.Rd b/man/sparsestep.Rd index f9e1ac3..7e8fa44 100644 --- a/man/sparsestep.Rd +++ b/man/sparsestep.Rd @@ -76,6 +76,17 @@ regularization parameter. x <- matrix(rnorm(100*20), 100, 20) y <- rnorm(100) fit <- sparsestep(x, y) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen, Andreas Alfons\cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J., Groenen, P.J.F. and Alfons, A. (2017). + \emph{SparseStep: Approximating the Counting Norm for Sparse Regularization}, + arXiv preprint arXiv:1701.06967 [stat.ME]. + URL \url{https://arxiv.org/abs/1701.06967}. } \seealso{ \code{\link{coef}}, \code{\link{print}}, \code{\link{predict}}, |
