├── .gitignore ├── DESCRIPTION ├── GWmodel ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R │ ├── BootstrapGWR.r │ ├── GeneralizedGWR.r │ ├── LocalsummaryStatistics.r │ ├── Model.selection.r │ ├── MontCarlo.r │ ├── RcppExports.R │ ├── bw.ggwr.r │ ├── bw.gtwr.R │ ├── bw.gwda.r │ ├── bw.gwss.average.R │ ├── bw.sel.r │ ├── collinearity.r │ ├── gtwr.R │ ├── gw.average.cv.R │ ├── gw.average.cv.contrib.R │ ├── gw.dist.r │ ├── gw.weight.r │ ├── gwda.r │ ├── gwpca.mc.r │ ├── gwpca.r │ ├── gwpca.visualization.r │ ├── gwr.basic.r │ ├── gwr.collin.diagno.r │ ├── gwr.hetero.r │ ├── gwr.mixed.r │ ├── gwr.multiscale.R │ ├── gwr.predict.r │ ├── gwr.robust.r │ ├── gwr.scalable.r │ ├── gwr.t.adjust.r │ ├── mink.pvals.R │ ├── minkovski.approach.r │ ├── writeGWR.r │ └── zzz.r ├── cleanup ├── configure ├── configure.ac ├── data │ ├── DubVoter.rda │ ├── EWHP.rda │ ├── EWOutline.rda │ ├── GE2015.rda │ ├── Georgia.rda │ ├── GeorgiaCounties.rda │ ├── LondonBorough.rda │ ├── LondonHP.rda │ ├── USelect.rda │ └── datalist ├── inst │ └── CITATION ├── man │ ├── DubVoter.rd │ ├── EWHP.Rd │ ├── EWOutline.rd │ ├── GWmodel-package.Rd │ ├── Georgia.Rd │ ├── GeorgiaCounties.rd │ ├── LondonBorough.rd │ ├── LondonHP.Rd │ ├── USelect.rd │ ├── bw.ggwr.Rd │ ├── bw.gtwr.Rd │ ├── bw.gwda.rd │ ├── bw.gwpca.rd │ ├── bw.gwr.Rd │ ├── bw.gwr.lcr.rd │ ├── bw.gwss.average.Rd │ ├── ggwr.basic.Rd │ ├── ggwr.cv.Rd │ ├── ggwr.cv.contrib.Rd │ ├── gtwr.Rd │ ├── gw.dist.Rd │ ├── gw.pcplot.rd │ ├── gw.weight.Rd │ ├── gwda.rd │ ├── gwpca.check.components.rd │ ├── gwpca.cv.Rd │ ├── gwpca.cv.contrib.Rd │ ├── gwpca.glyph.plot.rd │ ├── gwpca.montecarlo.1.rd │ ├── gwpca.montecarlo.2.rd │ ├── gwpca.rd │ ├── gwr.basic.rd │ ├── gwr.bootstrap.rd │ ├── gwr.collin.diagno.Rd │ ├── gwr.cv.Rd │ ├── gwr.cv.contrib.Rd │ ├── gwr.hetero.rd │ ├── gwr.lcr.cv.Rd │ ├── gwr.lcr.cv.contrib.Rd │ ├── gwr.lcr.rd │ ├── gwr.mink.approach.rd │ ├── gwr.mink.matrixview.rd │ ├── gwr.mink.pval.rd │ ├── gwr.mixed.rd │ ├── gwr.model.selection.Rd │ ├── gwr.model.sort.Rd │ ├── gwr.model.view.rd │ ├── gwr.montecarlo.Rd │ ├── gwr.multiscale.rd │ ├── gwr.predict.Rd │ ├── gwr.robust.Rd │ ├── gwr.scalable.rd │ ├── gwr.t.adjust.rd │ ├── gwr.write.Rd │ ├── gwss.montecarlo.Rd │ └── gwss.rd └── src │ ├── GWmodel.cpp │ ├── GWmodelCUDA │ ├── CGWmodelCUDA.cpp │ ├── CGWmodelCUDA.h │ ├── CMakeLists.txt │ ├── GWmodelKernel.cu │ ├── GWmodelKernel.h │ ├── IGWmodelCUDA.cpp │ ├── IGWmodelCUDA.h │ ├── cmake │ │ └── FindcuBLAS.cmake │ └── helper.h │ ├── Makevars.in │ ├── Makevars.win │ ├── RcppExports.cpp │ ├── download.ps1 │ └── init.c ├── NAMESPACE ├── R ├── BootstrapGWR.r ├── GeneralizedGWR.r ├── LocalsummaryStatistics.r ├── Model.selection.r ├── MontCarlo.r ├── RcppExports.R ├── bw.ggwr.r ├── bw.gtwr.R ├── bw.gwda.r ├── bw.gwss.average.R ├── bw.sel.r ├── collinearity.r ├── gtwr.R ├── gw.average.cv.R ├── gw.average.cv.contrib.R ├── gw.dist.r ├── gw.weight.r ├── gwda.r ├── gwpca.mc.r ├── gwpca.r ├── gwpca.visualization.r ├── gwr.basic.r ├── gwr.collin.diagno.r ├── gwr.hetero.r ├── gwr.mixed.r ├── gwr.multiscale.R ├── gwr.predict.r ├── gwr.robust.r ├── gwr.scalable.r ├── gwr.t.adjust.r ├── mink.pvals.R ├── minkovski.approach.r ├── writeGWR.r └── zzz.r ├── cleanup ├── configure ├── configure.ac ├── data ├── DubVoter.rda ├── EN_CB.rda ├── EWHP.rda ├── EWOutline.rda ├── GE2015.rda ├── Georgia.rda ├── GeorgiaCounties.rda ├── LondonBorough.rda ├── LondonHP.rda ├── USelect.rda └── datalist ├── inst └── CITATION ├── man ├── DubVoter.rd ├── EN_CB.rd ├── EWHP.Rd ├── EWOutline.rd ├── GE2015.rd ├── GWmodel-package.Rd ├── Georgia.Rd ├── GeorgiaCounties.rd ├── LondonBorough.rd ├── LondonHP.Rd ├── USelect.rd ├── bw.ggwr.Rd ├── bw.gtwr.Rd ├── bw.gwda.rd ├── bw.gwpca.rd ├── bw.gwr.Rd ├── bw.gwr.lcr.rd ├── bw.gwss.average.Rd ├── ggwr.basic.Rd ├── ggwr.cv.Rd ├── ggwr.cv.contrib.Rd ├── gtwr.Rd ├── gw.dist.Rd ├── gw.pcplot.rd ├── gw.weight.Rd ├── gwda.rd ├── gwpca.check.components.rd ├── gwpca.cv.Rd ├── gwpca.cv.contrib.Rd ├── gwpca.glyph.plot.rd ├── gwpca.montecarlo.1.rd ├── gwpca.montecarlo.2.rd ├── gwpca.rd ├── gwr.basic.rd ├── gwr.bootstrap.rd ├── gwr.collin.diagno.Rd ├── gwr.cv.Rd ├── gwr.cv.contrib.Rd ├── gwr.hetero.rd ├── gwr.lcr.cv.Rd ├── gwr.lcr.cv.contrib.Rd ├── gwr.lcr.rd ├── gwr.mink.approach.rd ├── gwr.mink.matrixview.rd ├── gwr.mink.pval.rd ├── gwr.mixed.rd ├── gwr.model.selection.Rd ├── gwr.model.sort.Rd ├── gwr.model.view.rd ├── gwr.montecarlo.Rd ├── gwr.multiscale.rd ├── gwr.predict.Rd ├── gwr.robust.Rd ├── gwr.scalable.rd ├── gwr.t.adjust.rd ├── gwr.write.Rd ├── gwss.montecarlo.Rd └── gwss.rd ├── readme.txt └── src ├── GWmodel.cpp ├── GWmodelCUDA ├── CGWmodelCUDA.cpp ├── CGWmodelCUDA.h ├── CMakeLists.txt ├── GWmodelKernel.cu ├── GWmodelKernel.h ├── IGWmodelCUDA.cpp ├── IGWmodelCUDA.h ├── cmake │ └── FindcuBLAS.cmake └── helper.h ├── Makevars.in ├── Makevars.win ├── RcppExports.cpp ├── download.ps1 └── init.c /.gitignore: -------------------------------------------------------------------------------- 1 | GWmodel_*.tar.gz 2 | debug.log -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /GWmodel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/.gitignore -------------------------------------------------------------------------------- /GWmodel/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/DESCRIPTION -------------------------------------------------------------------------------- /GWmodel/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/NAMESPACE -------------------------------------------------------------------------------- /GWmodel/R/BootstrapGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/BootstrapGWR.r -------------------------------------------------------------------------------- /GWmodel/R/GeneralizedGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/GeneralizedGWR.r -------------------------------------------------------------------------------- /GWmodel/R/LocalsummaryStatistics.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/LocalsummaryStatistics.r -------------------------------------------------------------------------------- /GWmodel/R/Model.selection.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/Model.selection.r -------------------------------------------------------------------------------- /GWmodel/R/MontCarlo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/MontCarlo.r -------------------------------------------------------------------------------- /GWmodel/R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/RcppExports.R -------------------------------------------------------------------------------- /GWmodel/R/bw.ggwr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/bw.ggwr.r -------------------------------------------------------------------------------- /GWmodel/R/bw.gtwr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/bw.gtwr.R -------------------------------------------------------------------------------- /GWmodel/R/bw.gwda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/bw.gwda.r -------------------------------------------------------------------------------- /GWmodel/R/bw.gwss.average.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/bw.gwss.average.R -------------------------------------------------------------------------------- /GWmodel/R/bw.sel.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/bw.sel.r -------------------------------------------------------------------------------- /GWmodel/R/collinearity.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/collinearity.r -------------------------------------------------------------------------------- /GWmodel/R/gtwr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gtwr.R -------------------------------------------------------------------------------- /GWmodel/R/gw.average.cv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gw.average.cv.R -------------------------------------------------------------------------------- /GWmodel/R/gw.average.cv.contrib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gw.average.cv.contrib.R -------------------------------------------------------------------------------- /GWmodel/R/gw.dist.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gw.dist.r -------------------------------------------------------------------------------- /GWmodel/R/gw.weight.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gw.weight.r -------------------------------------------------------------------------------- /GWmodel/R/gwda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwda.r -------------------------------------------------------------------------------- /GWmodel/R/gwpca.mc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwpca.mc.r -------------------------------------------------------------------------------- /GWmodel/R/gwpca.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwpca.r -------------------------------------------------------------------------------- /GWmodel/R/gwpca.visualization.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwpca.visualization.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.basic.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.basic.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.collin.diagno.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.collin.diagno.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.hetero.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.hetero.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.mixed.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.mixed.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.multiscale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.multiscale.R -------------------------------------------------------------------------------- /GWmodel/R/gwr.predict.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.predict.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.robust.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.robust.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.scalable.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.scalable.r -------------------------------------------------------------------------------- /GWmodel/R/gwr.t.adjust.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/gwr.t.adjust.r -------------------------------------------------------------------------------- /GWmodel/R/mink.pvals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/mink.pvals.R -------------------------------------------------------------------------------- /GWmodel/R/minkovski.approach.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/minkovski.approach.r -------------------------------------------------------------------------------- /GWmodel/R/writeGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/writeGWR.r -------------------------------------------------------------------------------- /GWmodel/R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/R/zzz.r -------------------------------------------------------------------------------- /GWmodel/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/cleanup -------------------------------------------------------------------------------- /GWmodel/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/configure -------------------------------------------------------------------------------- /GWmodel/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/configure.ac -------------------------------------------------------------------------------- /GWmodel/data/DubVoter.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/DubVoter.rda -------------------------------------------------------------------------------- /GWmodel/data/EWHP.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/EWHP.rda -------------------------------------------------------------------------------- /GWmodel/data/EWOutline.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/EWOutline.rda -------------------------------------------------------------------------------- /GWmodel/data/GE2015.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/GE2015.rda -------------------------------------------------------------------------------- /GWmodel/data/Georgia.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/Georgia.rda -------------------------------------------------------------------------------- /GWmodel/data/GeorgiaCounties.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/GeorgiaCounties.rda -------------------------------------------------------------------------------- /GWmodel/data/LondonBorough.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/LondonBorough.rda -------------------------------------------------------------------------------- /GWmodel/data/LondonHP.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/LondonHP.rda -------------------------------------------------------------------------------- /GWmodel/data/USelect.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/USelect.rda -------------------------------------------------------------------------------- /GWmodel/data/datalist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/data/datalist -------------------------------------------------------------------------------- /GWmodel/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/inst/CITATION -------------------------------------------------------------------------------- /GWmodel/man/DubVoter.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/DubVoter.rd -------------------------------------------------------------------------------- /GWmodel/man/EWHP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/EWHP.Rd -------------------------------------------------------------------------------- /GWmodel/man/EWOutline.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/EWOutline.rd -------------------------------------------------------------------------------- /GWmodel/man/GWmodel-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/GWmodel-package.Rd -------------------------------------------------------------------------------- /GWmodel/man/Georgia.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/Georgia.Rd -------------------------------------------------------------------------------- /GWmodel/man/GeorgiaCounties.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/GeorgiaCounties.rd -------------------------------------------------------------------------------- /GWmodel/man/LondonBorough.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/LondonBorough.rd -------------------------------------------------------------------------------- /GWmodel/man/LondonHP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/LondonHP.Rd -------------------------------------------------------------------------------- /GWmodel/man/USelect.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/USelect.rd -------------------------------------------------------------------------------- /GWmodel/man/bw.ggwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.ggwr.Rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gtwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gtwr.Rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gwda.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gwda.rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gwpca.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gwpca.rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gwr.Rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gwr.lcr.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gwr.lcr.rd -------------------------------------------------------------------------------- /GWmodel/man/bw.gwss.average.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/bw.gwss.average.Rd -------------------------------------------------------------------------------- /GWmodel/man/ggwr.basic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/ggwr.basic.Rd -------------------------------------------------------------------------------- /GWmodel/man/ggwr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/ggwr.cv.Rd -------------------------------------------------------------------------------- /GWmodel/man/ggwr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/ggwr.cv.contrib.Rd -------------------------------------------------------------------------------- /GWmodel/man/gtwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gtwr.Rd -------------------------------------------------------------------------------- /GWmodel/man/gw.dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gw.dist.Rd -------------------------------------------------------------------------------- /GWmodel/man/gw.pcplot.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gw.pcplot.rd -------------------------------------------------------------------------------- /GWmodel/man/gw.weight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gw.weight.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwda.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwda.rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.check.components.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.check.components.rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.cv.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.cv.contrib.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.glyph.plot.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.glyph.plot.rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.montecarlo.1.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.montecarlo.1.rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.montecarlo.2.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.montecarlo.2.rd -------------------------------------------------------------------------------- /GWmodel/man/gwpca.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwpca.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.basic.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.basic.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.bootstrap.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.bootstrap.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.collin.diagno.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.collin.diagno.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.cv.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.cv.contrib.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.hetero.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.hetero.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.lcr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.lcr.cv.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.lcr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.lcr.cv.contrib.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.lcr.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.lcr.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.mink.approach.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.mink.approach.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.mink.matrixview.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.mink.matrixview.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.mink.pval.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.mink.pval.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.mixed.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.mixed.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.model.selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.model.selection.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.model.sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.model.sort.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.model.view.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.model.view.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.montecarlo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.montecarlo.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.multiscale.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.multiscale.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.predict.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.robust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.robust.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.scalable.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.scalable.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.t.adjust.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.t.adjust.rd -------------------------------------------------------------------------------- /GWmodel/man/gwr.write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwr.write.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwss.montecarlo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwss.montecarlo.Rd -------------------------------------------------------------------------------- /GWmodel/man/gwss.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/man/gwss.rd -------------------------------------------------------------------------------- /GWmodel/src/GWmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodel.cpp -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/CGWmodelCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/CGWmodelCUDA.cpp -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/CGWmodelCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/CGWmodelCUDA.h -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/CMakeLists.txt -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/GWmodelKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/GWmodelKernel.cu -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/GWmodelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/GWmodelKernel.h -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/IGWmodelCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/IGWmodelCUDA.cpp -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/IGWmodelCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/IGWmodelCUDA.h -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/cmake/FindcuBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/cmake/FindcuBLAS.cmake -------------------------------------------------------------------------------- /GWmodel/src/GWmodelCUDA/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/GWmodelCUDA/helper.h -------------------------------------------------------------------------------- /GWmodel/src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/Makevars.in -------------------------------------------------------------------------------- /GWmodel/src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/Makevars.win -------------------------------------------------------------------------------- /GWmodel/src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/RcppExports.cpp -------------------------------------------------------------------------------- /GWmodel/src/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/download.ps1 -------------------------------------------------------------------------------- /GWmodel/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/GWmodel/src/init.c -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/BootstrapGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/BootstrapGWR.r -------------------------------------------------------------------------------- /R/GeneralizedGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/GeneralizedGWR.r -------------------------------------------------------------------------------- /R/LocalsummaryStatistics.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/LocalsummaryStatistics.r -------------------------------------------------------------------------------- /R/Model.selection.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/Model.selection.r -------------------------------------------------------------------------------- /R/MontCarlo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/MontCarlo.r -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/bw.ggwr.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/bw.ggwr.r -------------------------------------------------------------------------------- /R/bw.gtwr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/bw.gtwr.R -------------------------------------------------------------------------------- /R/bw.gwda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/bw.gwda.r -------------------------------------------------------------------------------- /R/bw.gwss.average.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/bw.gwss.average.R -------------------------------------------------------------------------------- /R/bw.sel.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/bw.sel.r -------------------------------------------------------------------------------- /R/collinearity.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/collinearity.r -------------------------------------------------------------------------------- /R/gtwr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gtwr.R -------------------------------------------------------------------------------- /R/gw.average.cv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gw.average.cv.R -------------------------------------------------------------------------------- /R/gw.average.cv.contrib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gw.average.cv.contrib.R -------------------------------------------------------------------------------- /R/gw.dist.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gw.dist.r -------------------------------------------------------------------------------- /R/gw.weight.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gw.weight.r -------------------------------------------------------------------------------- /R/gwda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwda.r -------------------------------------------------------------------------------- /R/gwpca.mc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwpca.mc.r -------------------------------------------------------------------------------- /R/gwpca.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwpca.r -------------------------------------------------------------------------------- /R/gwpca.visualization.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwpca.visualization.r -------------------------------------------------------------------------------- /R/gwr.basic.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.basic.r -------------------------------------------------------------------------------- /R/gwr.collin.diagno.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.collin.diagno.r -------------------------------------------------------------------------------- /R/gwr.hetero.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.hetero.r -------------------------------------------------------------------------------- /R/gwr.mixed.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.mixed.r -------------------------------------------------------------------------------- /R/gwr.multiscale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.multiscale.R -------------------------------------------------------------------------------- /R/gwr.predict.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.predict.r -------------------------------------------------------------------------------- /R/gwr.robust.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.robust.r -------------------------------------------------------------------------------- /R/gwr.scalable.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.scalable.r -------------------------------------------------------------------------------- /R/gwr.t.adjust.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/gwr.t.adjust.r -------------------------------------------------------------------------------- /R/mink.pvals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/mink.pvals.R -------------------------------------------------------------------------------- /R/minkovski.approach.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/minkovski.approach.r -------------------------------------------------------------------------------- /R/writeGWR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/writeGWR.r -------------------------------------------------------------------------------- /R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/R/zzz.r -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/cleanup -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/configure.ac -------------------------------------------------------------------------------- /data/DubVoter.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/DubVoter.rda -------------------------------------------------------------------------------- /data/EN_CB.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/EN_CB.rda -------------------------------------------------------------------------------- /data/EWHP.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/EWHP.rda -------------------------------------------------------------------------------- /data/EWOutline.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/EWOutline.rda -------------------------------------------------------------------------------- /data/GE2015.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/GE2015.rda -------------------------------------------------------------------------------- /data/Georgia.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/Georgia.rda -------------------------------------------------------------------------------- /data/GeorgiaCounties.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/GeorgiaCounties.rda -------------------------------------------------------------------------------- /data/LondonBorough.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/LondonBorough.rda -------------------------------------------------------------------------------- /data/LondonHP.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/LondonHP.rda -------------------------------------------------------------------------------- /data/USelect.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/USelect.rda -------------------------------------------------------------------------------- /data/datalist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/data/datalist -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/DubVoter.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/DubVoter.rd -------------------------------------------------------------------------------- /man/EN_CB.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/EN_CB.rd -------------------------------------------------------------------------------- /man/EWHP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/EWHP.Rd -------------------------------------------------------------------------------- /man/EWOutline.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/EWOutline.rd -------------------------------------------------------------------------------- /man/GE2015.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/GE2015.rd -------------------------------------------------------------------------------- /man/GWmodel-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/GWmodel-package.Rd -------------------------------------------------------------------------------- /man/Georgia.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/Georgia.Rd -------------------------------------------------------------------------------- /man/GeorgiaCounties.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/GeorgiaCounties.rd -------------------------------------------------------------------------------- /man/LondonBorough.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/LondonBorough.rd -------------------------------------------------------------------------------- /man/LondonHP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/LondonHP.Rd -------------------------------------------------------------------------------- /man/USelect.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/USelect.rd -------------------------------------------------------------------------------- /man/bw.ggwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.ggwr.Rd -------------------------------------------------------------------------------- /man/bw.gtwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gtwr.Rd -------------------------------------------------------------------------------- /man/bw.gwda.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gwda.rd -------------------------------------------------------------------------------- /man/bw.gwpca.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gwpca.rd -------------------------------------------------------------------------------- /man/bw.gwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gwr.Rd -------------------------------------------------------------------------------- /man/bw.gwr.lcr.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gwr.lcr.rd -------------------------------------------------------------------------------- /man/bw.gwss.average.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/bw.gwss.average.Rd -------------------------------------------------------------------------------- /man/ggwr.basic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/ggwr.basic.Rd -------------------------------------------------------------------------------- /man/ggwr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/ggwr.cv.Rd -------------------------------------------------------------------------------- /man/ggwr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/ggwr.cv.contrib.Rd -------------------------------------------------------------------------------- /man/gtwr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gtwr.Rd -------------------------------------------------------------------------------- /man/gw.dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gw.dist.Rd -------------------------------------------------------------------------------- /man/gw.pcplot.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gw.pcplot.rd -------------------------------------------------------------------------------- /man/gw.weight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gw.weight.Rd -------------------------------------------------------------------------------- /man/gwda.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwda.rd -------------------------------------------------------------------------------- /man/gwpca.check.components.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.check.components.rd -------------------------------------------------------------------------------- /man/gwpca.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.cv.Rd -------------------------------------------------------------------------------- /man/gwpca.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.cv.contrib.Rd -------------------------------------------------------------------------------- /man/gwpca.glyph.plot.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.glyph.plot.rd -------------------------------------------------------------------------------- /man/gwpca.montecarlo.1.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.montecarlo.1.rd -------------------------------------------------------------------------------- /man/gwpca.montecarlo.2.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.montecarlo.2.rd -------------------------------------------------------------------------------- /man/gwpca.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwpca.rd -------------------------------------------------------------------------------- /man/gwr.basic.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.basic.rd -------------------------------------------------------------------------------- /man/gwr.bootstrap.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.bootstrap.rd -------------------------------------------------------------------------------- /man/gwr.collin.diagno.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.collin.diagno.Rd -------------------------------------------------------------------------------- /man/gwr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.cv.Rd -------------------------------------------------------------------------------- /man/gwr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.cv.contrib.Rd -------------------------------------------------------------------------------- /man/gwr.hetero.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.hetero.rd -------------------------------------------------------------------------------- /man/gwr.lcr.cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.lcr.cv.Rd -------------------------------------------------------------------------------- /man/gwr.lcr.cv.contrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.lcr.cv.contrib.Rd -------------------------------------------------------------------------------- /man/gwr.lcr.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.lcr.rd -------------------------------------------------------------------------------- /man/gwr.mink.approach.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.mink.approach.rd -------------------------------------------------------------------------------- /man/gwr.mink.matrixview.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.mink.matrixview.rd -------------------------------------------------------------------------------- /man/gwr.mink.pval.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.mink.pval.rd -------------------------------------------------------------------------------- /man/gwr.mixed.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.mixed.rd -------------------------------------------------------------------------------- /man/gwr.model.selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.model.selection.Rd -------------------------------------------------------------------------------- /man/gwr.model.sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.model.sort.Rd -------------------------------------------------------------------------------- /man/gwr.model.view.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.model.view.rd -------------------------------------------------------------------------------- /man/gwr.montecarlo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.montecarlo.Rd -------------------------------------------------------------------------------- /man/gwr.multiscale.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.multiscale.rd -------------------------------------------------------------------------------- /man/gwr.predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.predict.Rd -------------------------------------------------------------------------------- /man/gwr.robust.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.robust.Rd -------------------------------------------------------------------------------- /man/gwr.scalable.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.scalable.rd -------------------------------------------------------------------------------- /man/gwr.t.adjust.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.t.adjust.rd -------------------------------------------------------------------------------- /man/gwr.write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwr.write.Rd -------------------------------------------------------------------------------- /man/gwss.montecarlo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwss.montecarlo.Rd -------------------------------------------------------------------------------- /man/gwss.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/man/gwss.rd -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/readme.txt -------------------------------------------------------------------------------- /src/GWmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodel.cpp -------------------------------------------------------------------------------- /src/GWmodelCUDA/CGWmodelCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/CGWmodelCUDA.cpp -------------------------------------------------------------------------------- /src/GWmodelCUDA/CGWmodelCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/CGWmodelCUDA.h -------------------------------------------------------------------------------- /src/GWmodelCUDA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/CMakeLists.txt -------------------------------------------------------------------------------- /src/GWmodelCUDA/GWmodelKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/GWmodelKernel.cu -------------------------------------------------------------------------------- /src/GWmodelCUDA/GWmodelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/GWmodelKernel.h -------------------------------------------------------------------------------- /src/GWmodelCUDA/IGWmodelCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/IGWmodelCUDA.cpp -------------------------------------------------------------------------------- /src/GWmodelCUDA/IGWmodelCUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/IGWmodelCUDA.h -------------------------------------------------------------------------------- /src/GWmodelCUDA/cmake/FindcuBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/cmake/FindcuBLAS.cmake -------------------------------------------------------------------------------- /src/GWmodelCUDA/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/GWmodelCUDA/helper.h -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/download.ps1 -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lbb220/GWmodel/HEAD/src/init.c --------------------------------------------------------------------------------