├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── RcppExports.R ├── asprcomp.R ├── coef.R ├── cv.R ├── fps-package.R ├── plot.R ├── predict.R └── print.R ├── README.md ├── data └── wine.RData ├── dev └── timing.r ├── fps.Rproj ├── man ├── as.prcomp.Rd ├── coef.fps.Rd ├── cv.Rd ├── cv.fps.Rd ├── fps.Rd ├── plot.fps.Rd ├── plot.fps_cv.Rd ├── predict.fps.Rd ├── print.fps.Rd ├── print.fps_coef.Rd ├── projection.Rd ├── projection.fps.Rd └── wine.Rd └── src ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── admm.h ├── fps.cpp ├── projection.cpp ├── projection.h ├── simplex.cpp ├── simplex.h ├── softthreshold.h ├── utility.cpp └── utility.h /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/asprcomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/asprcomp.R -------------------------------------------------------------------------------- /R/coef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/coef.R -------------------------------------------------------------------------------- /R/cv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/cv.R -------------------------------------------------------------------------------- /R/fps-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/fps-package.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/predict.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/R/print.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/README.md -------------------------------------------------------------------------------- /data/wine.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/data/wine.RData -------------------------------------------------------------------------------- /dev/timing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/dev/timing.r -------------------------------------------------------------------------------- /fps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/fps.Rproj -------------------------------------------------------------------------------- /man/as.prcomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/as.prcomp.Rd -------------------------------------------------------------------------------- /man/coef.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/coef.fps.Rd -------------------------------------------------------------------------------- /man/cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/cv.Rd -------------------------------------------------------------------------------- /man/cv.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/cv.fps.Rd -------------------------------------------------------------------------------- /man/fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/fps.Rd -------------------------------------------------------------------------------- /man/plot.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/plot.fps.Rd -------------------------------------------------------------------------------- /man/plot.fps_cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/plot.fps_cv.Rd -------------------------------------------------------------------------------- /man/predict.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/predict.fps.Rd -------------------------------------------------------------------------------- /man/print.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/print.fps.Rd -------------------------------------------------------------------------------- /man/print.fps_coef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/print.fps_coef.Rd -------------------------------------------------------------------------------- /man/projection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/projection.Rd -------------------------------------------------------------------------------- /man/projection.fps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/projection.fps.Rd -------------------------------------------------------------------------------- /man/wine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/man/wine.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/admm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/admm.h -------------------------------------------------------------------------------- /src/fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/fps.cpp -------------------------------------------------------------------------------- /src/projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/projection.cpp -------------------------------------------------------------------------------- /src/projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/projection.h -------------------------------------------------------------------------------- /src/simplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/simplex.cpp -------------------------------------------------------------------------------- /src/simplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/simplex.h -------------------------------------------------------------------------------- /src/softthreshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/softthreshold.h -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vqv/fps/HEAD/src/utility.h --------------------------------------------------------------------------------