├── .Rbuildignore ├── .gitignore ├── CHANGELOG ├── DESCRIPTION ├── NAMESPACE ├── R ├── b.star.R ├── bandwidth.R ├── cmstest.R ├── conbandwidth.R ├── condbandwidth.R ├── condensity.R ├── condistribution.R ├── conmode.R ├── console.R ├── dbandwidth.R ├── deneqtest.R ├── density.R ├── deptest.R ├── distribution.R ├── gsl_bspline.R ├── kbandwidth.R ├── kernelsum.R ├── np.cmstest.R ├── np.condensity.R ├── np.condensity.bw.R ├── np.condistribution.R ├── np.condistribution.bw.R ├── np.conmode.R ├── np.copula.R ├── np.deneqtest.R ├── np.density.R ├── np.density.bw.R ├── np.deptest.R ├── np.distribution.R ├── np.distribution.bw.R ├── np.kernel.R ├── np.plot.R ├── np.plregression.R ├── np.plregression.bw.R ├── np.qcmstest.R ├── np.qregression.R ├── np.quantile.R ├── np.regression.R ├── np.regression.bw.R ├── np.sdeptest.R ├── np.sigtest.R ├── np.singleindex.R ├── np.singleindex.bw.R ├── np.smoothcoef.R ├── np.smoothcoef.bw.R ├── np.symtest.R ├── np.unitest.R ├── npregiv.R ├── npregivderiv.R ├── npuniden.boundary.R ├── npuniden.reflect.R ├── npuniden.sc.R ├── plbandwidth.R ├── plregression.R ├── qregression.R ├── rbandwidth.R ├── regression.R ├── sdeptest.R ├── sibandwidth.R ├── sigtest.R ├── singleindex.R ├── smoothbandwidth.R ├── smoothcoefficient.R ├── symtest.R ├── unitest.R ├── util.R └── zzz.R ├── README.md ├── cleanup ├── data ├── Engel95.rda ├── Italy.rda ├── cps71.rda ├── oecdpanel.rda └── wage1.rda ├── demo ├── 00Index ├── Engel95.R ├── constrained.R ├── npregiv.R └── tree.R ├── inst ├── CITATION ├── COPYRIGHTS └── kernels.max ├── man ├── b.star.Rd ├── data-Engel95.Rd ├── data-cps71.Rd ├── data-italy.Rd ├── data-oecd.Rd ├── data-wage1.Rd ├── dontrun ├── gradients.Rd ├── np-package.Rd ├── np.cmstest.Rd ├── np.condensity.Rd ├── np.condensity.bw.Rd ├── np.condistribution.Rd ├── np.condistribution.bw.Rd ├── np.conmode.Rd ├── np.copula.Rd ├── np.deneqtest.Rd ├── np.density.Rd ├── np.density.bw.Rd ├── np.deptest.Rd ├── np.distribution.Rd ├── np.distribution.bw.Rd ├── np.kernelsum.Rd ├── np.plot.Rd ├── np.plregression.Rd ├── np.plregression.bw.Rd ├── np.qcmstest.Rd ├── np.qregression.Rd ├── np.quantile.Rd ├── np.regression.Rd ├── np.regression.bw.Rd ├── np.regressioniv.Rd ├── np.regressionivderiv.Rd ├── np.sdeptest.Rd ├── np.sigtest.Rd ├── np.singleindex.Rd ├── np.singleindex.bw.Rd ├── np.smoothcoef.Rd ├── np.smoothcoef.bw.Rd ├── np.symtest.Rd ├── np.unitest.Rd ├── npseed.Rd ├── nptgauss.Rd ├── npuniden.boundary.Rd ├── npuniden.reflect.Rd ├── npuniden.sc.Rd ├── run ├── se.Rd ├── sed_dontrun.scr ├── sed_run.scr └── uocquantile.Rd ├── mknpkg.sh ├── npver ├── src ├── Makevars.win ├── RuniqueCombs.c ├── RuniqueCombs.h ├── bspline.c ├── gsl_bspline.c ├── gsl_bspline.h ├── hash.c ├── hash.h ├── headers.h ├── jksum.c ├── kernel.c ├── kernelb.c ├── kernelcv.c ├── kernele.c ├── kernelw.c ├── mat_vec.c ├── matrix.c ├── matrix.h ├── np.c ├── np_init.c ├── nr.c ├── statmods.c ├── tree.c └── tree.h └── vignettes ├── entropy_np.Rnw ├── entropy_np.bib ├── np.Rnw ├── np.bib ├── np_faq.Rnw └── np_faq.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/CHANGELOG -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/b.star.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/b.star.R -------------------------------------------------------------------------------- /R/bandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/bandwidth.R -------------------------------------------------------------------------------- /R/cmstest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/cmstest.R -------------------------------------------------------------------------------- /R/conbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/conbandwidth.R -------------------------------------------------------------------------------- /R/condbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/condbandwidth.R -------------------------------------------------------------------------------- /R/condensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/condensity.R -------------------------------------------------------------------------------- /R/condistribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/condistribution.R -------------------------------------------------------------------------------- /R/conmode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/conmode.R -------------------------------------------------------------------------------- /R/console.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/console.R -------------------------------------------------------------------------------- /R/dbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/dbandwidth.R -------------------------------------------------------------------------------- /R/deneqtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/deneqtest.R -------------------------------------------------------------------------------- /R/density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/density.R -------------------------------------------------------------------------------- /R/deptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/deptest.R -------------------------------------------------------------------------------- /R/distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/distribution.R -------------------------------------------------------------------------------- /R/gsl_bspline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/gsl_bspline.R -------------------------------------------------------------------------------- /R/kbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/kbandwidth.R -------------------------------------------------------------------------------- /R/kernelsum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/kernelsum.R -------------------------------------------------------------------------------- /R/np.cmstest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.cmstest.R -------------------------------------------------------------------------------- /R/np.condensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.condensity.R -------------------------------------------------------------------------------- /R/np.condensity.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.condensity.bw.R -------------------------------------------------------------------------------- /R/np.condistribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.condistribution.R -------------------------------------------------------------------------------- /R/np.condistribution.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.condistribution.bw.R -------------------------------------------------------------------------------- /R/np.conmode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.conmode.R -------------------------------------------------------------------------------- /R/np.copula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.copula.R -------------------------------------------------------------------------------- /R/np.deneqtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.deneqtest.R -------------------------------------------------------------------------------- /R/np.density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.density.R -------------------------------------------------------------------------------- /R/np.density.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.density.bw.R -------------------------------------------------------------------------------- /R/np.deptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.deptest.R -------------------------------------------------------------------------------- /R/np.distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.distribution.R -------------------------------------------------------------------------------- /R/np.distribution.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.distribution.bw.R -------------------------------------------------------------------------------- /R/np.kernel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.kernel.R -------------------------------------------------------------------------------- /R/np.plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.plot.R -------------------------------------------------------------------------------- /R/np.plregression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.plregression.R -------------------------------------------------------------------------------- /R/np.plregression.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.plregression.bw.R -------------------------------------------------------------------------------- /R/np.qcmstest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.qcmstest.R -------------------------------------------------------------------------------- /R/np.qregression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.qregression.R -------------------------------------------------------------------------------- /R/np.quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.quantile.R -------------------------------------------------------------------------------- /R/np.regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.regression.R -------------------------------------------------------------------------------- /R/np.regression.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.regression.bw.R -------------------------------------------------------------------------------- /R/np.sdeptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.sdeptest.R -------------------------------------------------------------------------------- /R/np.sigtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.sigtest.R -------------------------------------------------------------------------------- /R/np.singleindex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.singleindex.R -------------------------------------------------------------------------------- /R/np.singleindex.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.singleindex.bw.R -------------------------------------------------------------------------------- /R/np.smoothcoef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.smoothcoef.R -------------------------------------------------------------------------------- /R/np.smoothcoef.bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.smoothcoef.bw.R -------------------------------------------------------------------------------- /R/np.symtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.symtest.R -------------------------------------------------------------------------------- /R/np.unitest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/np.unitest.R -------------------------------------------------------------------------------- /R/npregiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/npregiv.R -------------------------------------------------------------------------------- /R/npregivderiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/npregivderiv.R -------------------------------------------------------------------------------- /R/npuniden.boundary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/npuniden.boundary.R -------------------------------------------------------------------------------- /R/npuniden.reflect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/npuniden.reflect.R -------------------------------------------------------------------------------- /R/npuniden.sc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/npuniden.sc.R -------------------------------------------------------------------------------- /R/plbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/plbandwidth.R -------------------------------------------------------------------------------- /R/plregression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/plregression.R -------------------------------------------------------------------------------- /R/qregression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/qregression.R -------------------------------------------------------------------------------- /R/rbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/rbandwidth.R -------------------------------------------------------------------------------- /R/regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/regression.R -------------------------------------------------------------------------------- /R/sdeptest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/sdeptest.R -------------------------------------------------------------------------------- /R/sibandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/sibandwidth.R -------------------------------------------------------------------------------- /R/sigtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/sigtest.R -------------------------------------------------------------------------------- /R/singleindex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/singleindex.R -------------------------------------------------------------------------------- /R/smoothbandwidth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/smoothbandwidth.R -------------------------------------------------------------------------------- /R/smoothcoefficient.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/smoothcoefficient.R -------------------------------------------------------------------------------- /R/symtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/symtest.R -------------------------------------------------------------------------------- /R/unitest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/unitest.R -------------------------------------------------------------------------------- /R/util.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/util.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/README.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/cleanup -------------------------------------------------------------------------------- /data/Engel95.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/data/Engel95.rda -------------------------------------------------------------------------------- /data/Italy.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/data/Italy.rda -------------------------------------------------------------------------------- /data/cps71.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/data/cps71.rda -------------------------------------------------------------------------------- /data/oecdpanel.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/data/oecdpanel.rda -------------------------------------------------------------------------------- /data/wage1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/data/wage1.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/Engel95.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/demo/Engel95.R -------------------------------------------------------------------------------- /demo/constrained.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/demo/constrained.R -------------------------------------------------------------------------------- /demo/npregiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/demo/npregiv.R -------------------------------------------------------------------------------- /demo/tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/demo/tree.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/inst/COPYRIGHTS -------------------------------------------------------------------------------- /inst/kernels.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/inst/kernels.max -------------------------------------------------------------------------------- /man/b.star.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/b.star.Rd -------------------------------------------------------------------------------- /man/data-Engel95.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/data-Engel95.Rd -------------------------------------------------------------------------------- /man/data-cps71.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/data-cps71.Rd -------------------------------------------------------------------------------- /man/data-italy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/data-italy.Rd -------------------------------------------------------------------------------- /man/data-oecd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/data-oecd.Rd -------------------------------------------------------------------------------- /man/data-wage1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/data-wage1.Rd -------------------------------------------------------------------------------- /man/dontrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/dontrun -------------------------------------------------------------------------------- /man/gradients.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/gradients.Rd -------------------------------------------------------------------------------- /man/np-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np-package.Rd -------------------------------------------------------------------------------- /man/np.cmstest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.cmstest.Rd -------------------------------------------------------------------------------- /man/np.condensity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.condensity.Rd -------------------------------------------------------------------------------- /man/np.condensity.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.condensity.bw.Rd -------------------------------------------------------------------------------- /man/np.condistribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.condistribution.Rd -------------------------------------------------------------------------------- /man/np.condistribution.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.condistribution.bw.Rd -------------------------------------------------------------------------------- /man/np.conmode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.conmode.Rd -------------------------------------------------------------------------------- /man/np.copula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.copula.Rd -------------------------------------------------------------------------------- /man/np.deneqtest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.deneqtest.Rd -------------------------------------------------------------------------------- /man/np.density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.density.Rd -------------------------------------------------------------------------------- /man/np.density.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.density.bw.Rd -------------------------------------------------------------------------------- /man/np.deptest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.deptest.Rd -------------------------------------------------------------------------------- /man/np.distribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.distribution.Rd -------------------------------------------------------------------------------- /man/np.distribution.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.distribution.bw.Rd -------------------------------------------------------------------------------- /man/np.kernelsum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.kernelsum.Rd -------------------------------------------------------------------------------- /man/np.plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.plot.Rd -------------------------------------------------------------------------------- /man/np.plregression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.plregression.Rd -------------------------------------------------------------------------------- /man/np.plregression.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.plregression.bw.Rd -------------------------------------------------------------------------------- /man/np.qcmstest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.qcmstest.Rd -------------------------------------------------------------------------------- /man/np.qregression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.qregression.Rd -------------------------------------------------------------------------------- /man/np.quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.quantile.Rd -------------------------------------------------------------------------------- /man/np.regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.regression.Rd -------------------------------------------------------------------------------- /man/np.regression.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.regression.bw.Rd -------------------------------------------------------------------------------- /man/np.regressioniv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.regressioniv.Rd -------------------------------------------------------------------------------- /man/np.regressionivderiv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.regressionivderiv.Rd -------------------------------------------------------------------------------- /man/np.sdeptest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.sdeptest.Rd -------------------------------------------------------------------------------- /man/np.sigtest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.sigtest.Rd -------------------------------------------------------------------------------- /man/np.singleindex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.singleindex.Rd -------------------------------------------------------------------------------- /man/np.singleindex.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.singleindex.bw.Rd -------------------------------------------------------------------------------- /man/np.smoothcoef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.smoothcoef.Rd -------------------------------------------------------------------------------- /man/np.smoothcoef.bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.smoothcoef.bw.Rd -------------------------------------------------------------------------------- /man/np.symtest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.symtest.Rd -------------------------------------------------------------------------------- /man/np.unitest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/np.unitest.Rd -------------------------------------------------------------------------------- /man/npseed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/npseed.Rd -------------------------------------------------------------------------------- /man/nptgauss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/nptgauss.Rd -------------------------------------------------------------------------------- /man/npuniden.boundary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/npuniden.boundary.Rd -------------------------------------------------------------------------------- /man/npuniden.reflect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/npuniden.reflect.Rd -------------------------------------------------------------------------------- /man/npuniden.sc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/npuniden.sc.Rd -------------------------------------------------------------------------------- /man/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/run -------------------------------------------------------------------------------- /man/se.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/se.Rd -------------------------------------------------------------------------------- /man/sed_dontrun.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/sed_dontrun.scr -------------------------------------------------------------------------------- /man/sed_run.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/sed_run.scr -------------------------------------------------------------------------------- /man/uocquantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/man/uocquantile.Rd -------------------------------------------------------------------------------- /mknpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/mknpkg.sh -------------------------------------------------------------------------------- /npver: -------------------------------------------------------------------------------- 1 | 0.60-18 2 | -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RuniqueCombs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/RuniqueCombs.c -------------------------------------------------------------------------------- /src/RuniqueCombs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/RuniqueCombs.h -------------------------------------------------------------------------------- /src/bspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/bspline.c -------------------------------------------------------------------------------- /src/gsl_bspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/gsl_bspline.c -------------------------------------------------------------------------------- /src/gsl_bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/gsl_bspline.h -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/headers.h -------------------------------------------------------------------------------- /src/jksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/jksum.c -------------------------------------------------------------------------------- /src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/kernel.c -------------------------------------------------------------------------------- /src/kernelb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/kernelb.c -------------------------------------------------------------------------------- /src/kernelcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/kernelcv.c -------------------------------------------------------------------------------- /src/kernele.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/kernele.c -------------------------------------------------------------------------------- /src/kernelw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/kernelw.c -------------------------------------------------------------------------------- /src/mat_vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/mat_vec.c -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/np.c -------------------------------------------------------------------------------- /src/np_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/np_init.c -------------------------------------------------------------------------------- /src/nr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/nr.c -------------------------------------------------------------------------------- /src/statmods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/statmods.c -------------------------------------------------------------------------------- /src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/tree.c -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/src/tree.h -------------------------------------------------------------------------------- /vignettes/entropy_np.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/entropy_np.Rnw -------------------------------------------------------------------------------- /vignettes/entropy_np.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/entropy_np.bib -------------------------------------------------------------------------------- /vignettes/np.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/np.Rnw -------------------------------------------------------------------------------- /vignettes/np.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/np.bib -------------------------------------------------------------------------------- /vignettes/np_faq.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/np_faq.Rnw -------------------------------------------------------------------------------- /vignettes/np_faq.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRacine/R-Package-np/HEAD/vignettes/np_faq.bib --------------------------------------------------------------------------------