├── .Rbuildignore ├── .github └── workflows │ ├── rhub.yaml │ └── test.yml ├── .gitignore ├── CRAN-RELEASE ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── AutomaticDemandIdentifier.R ├── RcppExports.R ├── alaplace.R ├── alm.R ├── association.R ├── bcnorm.R ├── ccd.R ├── coefbootstrap.R ├── cramer.R ├── detector-dst-leap.R ├── determination.R ├── distributions.R ├── dsrboot.R ├── error-measures.R ├── fnorm.R ├── gnorm.R ├── graphmaker.R ├── greybox-package.R ├── isFunctions.R ├── laplace.R ├── lmCombine.R ├── lmDynamic.R ├── logitnorm.R ├── mcor.R ├── methods.R ├── outlierdummy.R ├── pcor.R ├── pointLik.R ├── rectnorm.R ├── rmcb.R ├── ro.R ├── scaler.R ├── spread.R ├── stepwise.R ├── svet.R ├── tableplot.R ├── temporaldummy.R ├── tplnorm.R ├── xregExpander.R ├── xregMultiplier.R ├── xregTransformer.R └── zzz.R ├── README.md ├── cran-comments.md ├── greybox.Rproj ├── man-roxygen ├── AICRef.R ├── author.R └── keywords.R ├── man ├── ALaplace.Rd ├── BCNormal.Rd ├── Distributions.Rd ├── FNormal.Rd ├── InformationCriteria.Rd ├── Laplace.Rd ├── LogitNormal.Rd ├── SDistribution.Rd ├── TPLNormal.Rd ├── accuracy.Rd ├── actuals.Rd ├── aid.Rd ├── alm.Rd ├── association.Rd ├── coef.alm.Rd ├── coefbootstrap.Rd ├── cramer.Rd ├── detectdst.Rd ├── determination.Rd ├── dsrboot.Rd ├── error-measures.Rd ├── errorType.Rd ├── extractScale.Rd ├── figures │ └── greybox-web.png ├── gnorm.Rd ├── graphmaker.Rd ├── greybox.Rd ├── hm.Rd ├── implant.Rd ├── isFunctions.Rd ├── lmCombine.Rd ├── lmDynamic.Rd ├── mcor.Rd ├── measures.Rd ├── nparam.Rd ├── outlierdummy.Rd ├── pcor.Rd ├── pinball.Rd ├── plot.greybox.Rd ├── pointIC.Rd ├── pointLik.Rd ├── polyprod.Rd ├── predict.greybox.Rd ├── rectNormal.Rd ├── reexports.Rd ├── rmcb.Rd ├── ro.Rd ├── sm.Rd ├── spread.Rd ├── stepwise.Rd ├── tableplot.Rd ├── temporaldummy.Rd ├── xregExpander.Rd ├── xregMultiplier.Rd └── xregTransformer.Rd ├── src ├── RcppExports.cpp ├── RcppExports.o ├── greybox.so ├── polyMult.cpp └── polyMult.o └── vignettes ├── alm.Rmd ├── greybox.Rmd ├── img ├── ROProcessCO.gif ├── ROProcessCOCI.gif └── ROProcessNoCO.gif ├── library.bib ├── maUsingGreybox.Rmd └── ro.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/NEWS -------------------------------------------------------------------------------- /R/AutomaticDemandIdentifier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/AutomaticDemandIdentifier.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/alaplace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/alaplace.R -------------------------------------------------------------------------------- /R/alm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/alm.R -------------------------------------------------------------------------------- /R/association.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/association.R -------------------------------------------------------------------------------- /R/bcnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/bcnorm.R -------------------------------------------------------------------------------- /R/ccd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/ccd.R -------------------------------------------------------------------------------- /R/coefbootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/coefbootstrap.R -------------------------------------------------------------------------------- /R/cramer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/cramer.R -------------------------------------------------------------------------------- /R/detector-dst-leap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/detector-dst-leap.R -------------------------------------------------------------------------------- /R/determination.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/determination.R -------------------------------------------------------------------------------- /R/distributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/distributions.R -------------------------------------------------------------------------------- /R/dsrboot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/dsrboot.R -------------------------------------------------------------------------------- /R/error-measures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/error-measures.R -------------------------------------------------------------------------------- /R/fnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/fnorm.R -------------------------------------------------------------------------------- /R/gnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/gnorm.R -------------------------------------------------------------------------------- /R/graphmaker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/graphmaker.R -------------------------------------------------------------------------------- /R/greybox-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/greybox-package.R -------------------------------------------------------------------------------- /R/isFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/isFunctions.R -------------------------------------------------------------------------------- /R/laplace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/laplace.R -------------------------------------------------------------------------------- /R/lmCombine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/lmCombine.R -------------------------------------------------------------------------------- /R/lmDynamic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/lmDynamic.R -------------------------------------------------------------------------------- /R/logitnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/logitnorm.R -------------------------------------------------------------------------------- /R/mcor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/mcor.R -------------------------------------------------------------------------------- /R/methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/methods.R -------------------------------------------------------------------------------- /R/outlierdummy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/outlierdummy.R -------------------------------------------------------------------------------- /R/pcor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/pcor.R -------------------------------------------------------------------------------- /R/pointLik.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/pointLik.R -------------------------------------------------------------------------------- /R/rectnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/rectnorm.R -------------------------------------------------------------------------------- /R/rmcb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/rmcb.R -------------------------------------------------------------------------------- /R/ro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/ro.R -------------------------------------------------------------------------------- /R/scaler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/scaler.R -------------------------------------------------------------------------------- /R/spread.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/spread.R -------------------------------------------------------------------------------- /R/stepwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/stepwise.R -------------------------------------------------------------------------------- /R/svet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/svet.R -------------------------------------------------------------------------------- /R/tableplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/tableplot.R -------------------------------------------------------------------------------- /R/temporaldummy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/temporaldummy.R -------------------------------------------------------------------------------- /R/tplnorm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/tplnorm.R -------------------------------------------------------------------------------- /R/xregExpander.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/xregExpander.R -------------------------------------------------------------------------------- /R/xregMultiplier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/xregMultiplier.R -------------------------------------------------------------------------------- /R/xregTransformer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/xregTransformer.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/cran-comments.md -------------------------------------------------------------------------------- /greybox.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/greybox.Rproj -------------------------------------------------------------------------------- /man-roxygen/AICRef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man-roxygen/AICRef.R -------------------------------------------------------------------------------- /man-roxygen/author.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man-roxygen/author.R -------------------------------------------------------------------------------- /man-roxygen/keywords.R: -------------------------------------------------------------------------------- 1 | #' @keywords ts models regression nonlinear 2 | -------------------------------------------------------------------------------- /man/ALaplace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/ALaplace.Rd -------------------------------------------------------------------------------- /man/BCNormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/BCNormal.Rd -------------------------------------------------------------------------------- /man/Distributions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/Distributions.Rd -------------------------------------------------------------------------------- /man/FNormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/FNormal.Rd -------------------------------------------------------------------------------- /man/InformationCriteria.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/InformationCriteria.Rd -------------------------------------------------------------------------------- /man/Laplace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/Laplace.Rd -------------------------------------------------------------------------------- /man/LogitNormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/LogitNormal.Rd -------------------------------------------------------------------------------- /man/SDistribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/SDistribution.Rd -------------------------------------------------------------------------------- /man/TPLNormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/TPLNormal.Rd -------------------------------------------------------------------------------- /man/accuracy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/accuracy.Rd -------------------------------------------------------------------------------- /man/actuals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/actuals.Rd -------------------------------------------------------------------------------- /man/aid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/aid.Rd -------------------------------------------------------------------------------- /man/alm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/alm.Rd -------------------------------------------------------------------------------- /man/association.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/association.Rd -------------------------------------------------------------------------------- /man/coef.alm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/coef.alm.Rd -------------------------------------------------------------------------------- /man/coefbootstrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/coefbootstrap.Rd -------------------------------------------------------------------------------- /man/cramer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/cramer.Rd -------------------------------------------------------------------------------- /man/detectdst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/detectdst.Rd -------------------------------------------------------------------------------- /man/determination.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/determination.Rd -------------------------------------------------------------------------------- /man/dsrboot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/dsrboot.Rd -------------------------------------------------------------------------------- /man/error-measures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/error-measures.Rd -------------------------------------------------------------------------------- /man/errorType.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/errorType.Rd -------------------------------------------------------------------------------- /man/extractScale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/extractScale.Rd -------------------------------------------------------------------------------- /man/figures/greybox-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/figures/greybox-web.png -------------------------------------------------------------------------------- /man/gnorm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/gnorm.Rd -------------------------------------------------------------------------------- /man/graphmaker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/graphmaker.Rd -------------------------------------------------------------------------------- /man/greybox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/greybox.Rd -------------------------------------------------------------------------------- /man/hm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/hm.Rd -------------------------------------------------------------------------------- /man/implant.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/implant.Rd -------------------------------------------------------------------------------- /man/isFunctions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/isFunctions.Rd -------------------------------------------------------------------------------- /man/lmCombine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/lmCombine.Rd -------------------------------------------------------------------------------- /man/lmDynamic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/lmDynamic.Rd -------------------------------------------------------------------------------- /man/mcor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/mcor.Rd -------------------------------------------------------------------------------- /man/measures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/measures.Rd -------------------------------------------------------------------------------- /man/nparam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/nparam.Rd -------------------------------------------------------------------------------- /man/outlierdummy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/outlierdummy.Rd -------------------------------------------------------------------------------- /man/pcor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/pcor.Rd -------------------------------------------------------------------------------- /man/pinball.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/pinball.Rd -------------------------------------------------------------------------------- /man/plot.greybox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/plot.greybox.Rd -------------------------------------------------------------------------------- /man/pointIC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/pointIC.Rd -------------------------------------------------------------------------------- /man/pointLik.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/pointLik.Rd -------------------------------------------------------------------------------- /man/polyprod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/polyprod.Rd -------------------------------------------------------------------------------- /man/predict.greybox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/predict.greybox.Rd -------------------------------------------------------------------------------- /man/rectNormal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/rectNormal.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/rmcb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/rmcb.Rd -------------------------------------------------------------------------------- /man/ro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/ro.Rd -------------------------------------------------------------------------------- /man/sm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/sm.Rd -------------------------------------------------------------------------------- /man/spread.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/spread.Rd -------------------------------------------------------------------------------- /man/stepwise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/stepwise.Rd -------------------------------------------------------------------------------- /man/tableplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/tableplot.Rd -------------------------------------------------------------------------------- /man/temporaldummy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/temporaldummy.Rd -------------------------------------------------------------------------------- /man/xregExpander.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/xregExpander.Rd -------------------------------------------------------------------------------- /man/xregMultiplier.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/xregMultiplier.Rd -------------------------------------------------------------------------------- /man/xregTransformer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/man/xregTransformer.Rd -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/RcppExports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/src/RcppExports.o -------------------------------------------------------------------------------- /src/greybox.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/src/greybox.so -------------------------------------------------------------------------------- /src/polyMult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/src/polyMult.cpp -------------------------------------------------------------------------------- /src/polyMult.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/src/polyMult.o -------------------------------------------------------------------------------- /vignettes/alm.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/alm.Rmd -------------------------------------------------------------------------------- /vignettes/greybox.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/greybox.Rmd -------------------------------------------------------------------------------- /vignettes/img/ROProcessCO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/img/ROProcessCO.gif -------------------------------------------------------------------------------- /vignettes/img/ROProcessCOCI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/img/ROProcessCOCI.gif -------------------------------------------------------------------------------- /vignettes/img/ROProcessNoCO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/img/ROProcessNoCO.gif -------------------------------------------------------------------------------- /vignettes/library.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/library.bib -------------------------------------------------------------------------------- /vignettes/maUsingGreybox.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/maUsingGreybox.Rmd -------------------------------------------------------------------------------- /vignettes/ro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/config-i1/greybox/HEAD/vignettes/ro.Rmd --------------------------------------------------------------------------------