├── LICENSE.md ├── Python ├── binsreg │ ├── .Rhistory │ ├── README.md │ ├── ToBuild.txt │ ├── dist │ │ ├── binsreg-2.1.7-py3-none-any.whl │ │ └── binsreg-2.1.7.tar.gz │ ├── pyproject.toml │ ├── setup.cfg │ ├── src │ │ ├── binsreg.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ └── binsreg │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── binsglm.cpython-312.pyc │ │ │ ├── binsglm.cpython-38.pyc │ │ │ ├── binspwc.cpython-312.pyc │ │ │ ├── binspwc.cpython-38.pyc │ │ │ ├── binsqreg.cpython-312.pyc │ │ │ ├── binsqreg.cpython-38.pyc │ │ │ ├── binsreg.cpython-312.pyc │ │ │ ├── binsreg.cpython-313.pyc │ │ │ ├── binsreg.cpython-38.pyc │ │ │ ├── binsregselect.cpython-312.pyc │ │ │ ├── binsregselect.cpython-38.pyc │ │ │ ├── binstest.cpython-312.pyc │ │ │ ├── binstest.cpython-38.pyc │ │ │ ├── funs.cpython-312.pyc │ │ │ └── funs.cpython-38.pyc │ │ │ ├── binsglm.py │ │ │ ├── binspwc.py │ │ │ ├── binsqreg.py │ │ │ ├── binsreg.py │ │ │ ├── binsregselect.py │ │ │ ├── binstest.py │ │ │ └── funs.py │ ├── test │ │ ├── .RData │ │ ├── .Rhistory │ │ ├── Untitled.R │ │ ├── Untitled_rdlocrand.R │ │ ├── __pycache__ │ │ │ └── binsregselect_bias.cpython-38.pyc │ │ ├── bias_bug_test.py │ │ ├── binsreg_illustration_plot_test.py │ │ ├── binsreg_illustration_test.py │ │ ├── binsreg_sim.csv │ │ ├── binsregselect_bias.py │ │ ├── test.R │ │ ├── test_funs.py │ │ └── test_pkg.py │ └── unused functions │ │ └── funs_old.py ├── binsreg_illustration.py ├── binsreg_illustration_plot.py └── binsreg_sim.csv ├── R ├── binsreg.pdf ├── binsreg │ ├── .Rbuildignore │ ├── .Rhistory │ ├── .Rproj.user │ │ ├── 218BE861 │ │ │ ├── cpp-definition-cache │ │ │ ├── pcs │ │ │ │ ├── debug-breakpoints.pper │ │ │ │ ├── files-pane.pper │ │ │ │ ├── packages-pane.pper │ │ │ │ ├── source-pane.pper │ │ │ │ ├── windowlayoutstate.pper │ │ │ │ └── workbench-pane.pper │ │ │ ├── persistent-state │ │ │ ├── rmd-outputs │ │ │ ├── saved_source_markers │ │ │ └── sources │ │ │ │ ├── per │ │ │ │ └── t │ │ │ │ │ ├── 3FAA5D20 │ │ │ │ │ ├── 3FAA5D20-contents │ │ │ │ │ ├── A822FB14 │ │ │ │ │ ├── A822FB14-contents │ │ │ │ │ ├── D16147CA │ │ │ │ │ ├── D16147CA-contents │ │ │ │ │ ├── D3A36B99 │ │ │ │ │ ├── D3A36B99-contents │ │ │ │ │ ├── DB3E3B9B │ │ │ │ │ ├── DB3E3B9B-contents │ │ │ │ │ ├── DF9382FC │ │ │ │ │ ├── DF9382FC-contents │ │ │ │ │ ├── E30309BA │ │ │ │ │ ├── E30309BA-contents │ │ │ │ │ ├── E41A774A │ │ │ │ │ ├── E41A774A-contents │ │ │ │ │ ├── E78DC825 │ │ │ │ │ └── E78DC825-contents │ │ │ │ └── prop │ │ │ │ ├── 1EAA57F6 │ │ │ │ ├── 4033E6E0 │ │ │ │ ├── 8AA7333A │ │ │ │ ├── A8DD12C8 │ │ │ │ ├── AF156A22 │ │ │ │ ├── B34A11BA │ │ │ │ ├── B3D93679 │ │ │ │ ├── B9AC4EED │ │ │ │ ├── BF76DEB4 │ │ │ │ ├── CF3EC8A4 │ │ │ │ ├── D1BAFCA3 │ │ │ │ ├── EB47CDE5 │ │ │ │ ├── F7897FB8 │ │ │ │ └── INDEX │ │ ├── 9AA9EAAC │ │ │ ├── cpp-definition-cache │ │ │ ├── pcs │ │ │ │ ├── debug-breakpoints.pper │ │ │ │ ├── files-pane.pper │ │ │ │ ├── source-pane.pper │ │ │ │ ├── windowlayoutstate.pper │ │ │ │ └── workbench-pane.pper │ │ │ ├── persistent-state │ │ │ ├── rmd-outputs │ │ │ ├── saved_source_markers │ │ │ └── sources │ │ │ │ ├── per │ │ │ │ └── t │ │ │ │ │ ├── 24853B45 │ │ │ │ │ ├── 24853B45-contents │ │ │ │ │ ├── 3967B2E8 │ │ │ │ │ ├── 3967B2E8-contents │ │ │ │ │ ├── 4A5366D8 │ │ │ │ │ ├── 4A5366D8-contents │ │ │ │ │ ├── 78521FBF │ │ │ │ │ ├── 78521FBF-contents │ │ │ │ │ ├── EBF03164 │ │ │ │ │ └── EBF03164-contents │ │ │ │ └── prop │ │ │ │ ├── 238A2BEF │ │ │ │ ├── 29D0D661 │ │ │ │ ├── 5591DD97 │ │ │ │ ├── 617618A9 │ │ │ │ ├── 6F39FEEF │ │ │ │ ├── 77F1D6BF │ │ │ │ ├── 85CBC59D │ │ │ │ ├── 8AD1D91A │ │ │ │ ├── C5AC5526 │ │ │ │ ├── E85FFCEF │ │ │ │ └── INDEX │ │ ├── CF665A2A │ │ │ ├── pcs │ │ │ │ ├── debug-breakpoints.pper │ │ │ │ ├── files-pane.pper │ │ │ │ ├── packages-pane.pper │ │ │ │ ├── source-pane.pper │ │ │ │ ├── windowlayoutstate.pper │ │ │ │ └── workbench-pane.pper │ │ │ ├── persistent-state │ │ │ ├── rmd-outputs │ │ │ ├── saved_source_markers │ │ │ └── sources │ │ │ │ ├── prop │ │ │ │ ├── 53977BA5 │ │ │ │ ├── CEFD2BBB │ │ │ │ ├── FF40537A │ │ │ │ └── INDEX │ │ │ │ └── session-6cd50026 │ │ │ │ ├── 05A737F2 │ │ │ │ ├── 05A737F2-contents │ │ │ │ ├── 16269BD4 │ │ │ │ ├── 16269BD4-contents │ │ │ │ ├── 3CAB5E36 │ │ │ │ ├── 3CAB5E36-contents │ │ │ │ ├── 56F74619-contents │ │ │ │ └── lock_file │ │ └── shared │ │ │ └── notebooks │ │ │ ├── patch-chunk-names │ │ │ └── paths │ ├── DESCRIPTION │ ├── NAMESPACE │ ├── R │ │ ├── binsglm.R │ │ ├── binspwc.R │ │ ├── binsqreg.R │ │ ├── binsreg-package.R │ │ ├── binsreg.R │ │ ├── binsreg_functions.R │ │ ├── binsregselect.R │ │ └── binstest.R │ ├── binsreg.Rproj │ └── man │ │ ├── binsglm.Rd │ │ ├── binspwc.Rd │ │ ├── binsqreg.Rd │ │ ├── binsreg-package.Rd │ │ ├── binsreg.Rd │ │ ├── binsregselect.Rd │ │ ├── binstest.Rd │ │ ├── print.CCFFbinsglm.Rd │ │ ├── print.CCFFbinspwc.Rd │ │ ├── print.CCFFbinsqreg.Rd │ │ ├── print.CCFFbinsreg.Rd │ │ ├── print.CCFFbinsregselect.Rd │ │ ├── print.CCFFbinstest.Rd │ │ ├── summary.CCFFbinsglm.Rd │ │ ├── summary.CCFFbinspwc.Rd │ │ ├── summary.CCFFbinsqreg.Rd │ │ ├── summary.CCFFbinsreg.Rd │ │ ├── summary.CCFFbinsregselect.Rd │ │ └── summary.CCFFbinstest.Rd ├── binsreg_1.1.tar.gz ├── binsreg_illustration.R ├── binsreg_illustration_plot.R └── binsreg_sim.csv ├── README.md └── stata ├── binslogit.ado ├── binslogit.pdf ├── binslogit.sthlp ├── binsprobit.ado ├── binsprobit.pdf ├── binsprobit.sthlp ├── binspwc.ado ├── binspwc.pdf ├── binspwc.sthlp ├── binsqreg.ado ├── binsqreg.pdf ├── binsqreg.sthlp ├── binsreg.ado ├── binsreg.pdf ├── binsreg.pkg ├── binsreg.sthlp ├── binsreg_checkdrop.mo ├── binsreg_cquantile.mo ├── binsreg_functions.do ├── binsreg_grids.mo ├── binsreg_illustration.do ├── binsreg_illustration_plot.do ├── binsreg_irecode.ado ├── binsreg_pctile.ado ├── binsreg_pred.mo ├── binsreg_pval.mo ├── binsreg_simdata.dta ├── binsreg_spdes.mo ├── binsreg_speedcomparison.do ├── binsreg_st_spdes.mo ├── binsreg_stat.mo ├── binsreg_uniq.mo ├── binsregselect.ado ├── binsregselect.pdf ├── binsregselect.sthlp ├── binstest.ado ├── binstest.pdf ├── binstest.sthlp └── stata.toc /LICENSE.md: -------------------------------------------------------------------------------- 1 | GPL-3.0 2 | -------------------------------------------------------------------------------- /Python/binsreg/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/binsreg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/README.md -------------------------------------------------------------------------------- /Python/binsreg/ToBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/ToBuild.txt -------------------------------------------------------------------------------- /Python/binsreg/dist/binsreg-2.1.7-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/dist/binsreg-2.1.7-py3-none-any.whl -------------------------------------------------------------------------------- /Python/binsreg/dist/binsreg-2.1.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/dist/binsreg-2.1.7.tar.gz -------------------------------------------------------------------------------- /Python/binsreg/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/pyproject.toml -------------------------------------------------------------------------------- /Python/binsreg/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/setup.cfg -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg.egg-info/PKG-INFO -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg.egg-info/requires.txt -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | binsreg 2 | -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__init__.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsglm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsglm.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsglm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsglm.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binspwc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binspwc.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binspwc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binspwc.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsqreg.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsqreg.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsqreg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsqreg.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-313.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsreg.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsregselect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsregselect.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binsregselect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binsregselect.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binstest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binstest.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/binstest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/binstest.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/funs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/funs.cpython-312.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/__pycache__/funs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/__pycache__/funs.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binsglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binsglm.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binspwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binspwc.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binsqreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binsqreg.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binsreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binsreg.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binsregselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binsregselect.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/binstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/binstest.py -------------------------------------------------------------------------------- /Python/binsreg/src/binsreg/funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/src/binsreg/funs.py -------------------------------------------------------------------------------- /Python/binsreg/test/.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/.RData -------------------------------------------------------------------------------- /Python/binsreg/test/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/.Rhistory -------------------------------------------------------------------------------- /Python/binsreg/test/Untitled.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/Untitled.R -------------------------------------------------------------------------------- /Python/binsreg/test/Untitled_rdlocrand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/Untitled_rdlocrand.R -------------------------------------------------------------------------------- /Python/binsreg/test/__pycache__/binsregselect_bias.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/__pycache__/binsregselect_bias.cpython-38.pyc -------------------------------------------------------------------------------- /Python/binsreg/test/bias_bug_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/bias_bug_test.py -------------------------------------------------------------------------------- /Python/binsreg/test/binsreg_illustration_plot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/binsreg_illustration_plot_test.py -------------------------------------------------------------------------------- /Python/binsreg/test/binsreg_illustration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/binsreg_illustration_test.py -------------------------------------------------------------------------------- /Python/binsreg/test/binsreg_sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/binsreg_sim.csv -------------------------------------------------------------------------------- /Python/binsreg/test/binsregselect_bias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/binsregselect_bias.py -------------------------------------------------------------------------------- /Python/binsreg/test/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/test.R -------------------------------------------------------------------------------- /Python/binsreg/test/test_funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/test_funs.py -------------------------------------------------------------------------------- /Python/binsreg/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/test/test_pkg.py -------------------------------------------------------------------------------- /Python/binsreg/unused functions/funs_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg/unused functions/funs_old.py -------------------------------------------------------------------------------- /Python/binsreg_illustration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg_illustration.py -------------------------------------------------------------------------------- /Python/binsreg_illustration_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg_illustration_plot.py -------------------------------------------------------------------------------- /Python/binsreg_sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/Python/binsreg_sim.csv -------------------------------------------------------------------------------- /R/binsreg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg.pdf -------------------------------------------------------------------------------- /R/binsreg/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rbuildignore -------------------------------------------------------------------------------- /R/binsreg/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rhistory -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/cpp-definition-cache: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/pcs/files-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/packages-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/pcs/packages-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab": 4 3 | } -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/persistent-state -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/3FAA5D20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/3FAA5D20 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/3FAA5D20-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/3FAA5D20-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/A822FB14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/A822FB14 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/A822FB14-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/A822FB14-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/D16147CA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/D16147CA -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/D16147CA-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/D16147CA-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/D3A36B99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/D3A36B99 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/D3A36B99-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/D3A36B99-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/DB3E3B9B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/DB3E3B9B -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/DB3E3B9B-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/DB3E3B9B-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/DF9382FC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/DF9382FC -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/DF9382FC-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/DF9382FC-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E30309BA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E30309BA -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E30309BA-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E30309BA-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E41A774A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E41A774A -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E41A774A-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E41A774A-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E78DC825: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E78DC825 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/per/t/E78DC825-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/per/t/E78DC825-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/1EAA57F6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/1EAA57F6 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/4033E6E0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/4033E6E0 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/8AA7333A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/8AA7333A -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/A8DD12C8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/A8DD12C8 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/AF156A22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/AF156A22 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/B34A11BA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/B34A11BA -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/B3D93679: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/B3D93679 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/B9AC4EED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/B9AC4EED -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/BF76DEB4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/BF76DEB4 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/CF3EC8A4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/CF3EC8A4 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/D1BAFCA3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/D1BAFCA3 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/EB47CDE5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/EB47CDE5 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/F7897FB8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/F7897FB8 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/218BE861/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/218BE861/sources/prop/INDEX -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/cpp-definition-cache: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/pcs/files-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab": 0 3 | } -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/persistent-state -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/24853B45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/24853B45 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/24853B45-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/24853B45-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/3967B2E8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/3967B2E8 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/3967B2E8-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/3967B2E8-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/4A5366D8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/4A5366D8 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/4A5366D8-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/4A5366D8-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/78521FBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/78521FBF -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/78521FBF-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/78521FBF-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/EBF03164: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/EBF03164 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/EBF03164-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/per/t/EBF03164-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/238A2BEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/238A2BEF -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/29D0D661: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/29D0D661 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/5591DD97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/5591DD97 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/617618A9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/617618A9 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/6F39FEEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/6F39FEEF -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/77F1D6BF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/77F1D6BF -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/85CBC59D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/85CBC59D -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/8AD1D91A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/8AD1D91A -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/C5AC5526: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/C5AC5526 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/E85FFCEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/E85FFCEF -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/9AA9EAAC/sources/prop/INDEX -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/pcs/files-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/packages-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/pcs/packages-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab": 0 3 | } -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/persistent-state -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/prop/53977BA5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/prop/53977BA5 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/prop/CEFD2BBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/prop/CEFD2BBB -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/prop/FF40537A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/prop/FF40537A -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/prop/INDEX -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/05A737F2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/05A737F2 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/05A737F2-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/05A737F2-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/16269BD4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/16269BD4 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/16269BD4-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/16269BD4-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/3CAB5E36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/3CAB5E36 -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/3CAB5E36-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/3CAB5E36-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/56F74619-contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/56F74619-contents -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/CF665A2A/sources/session-6cd50026/lock_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/binsreg/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /R/binsreg/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/DESCRIPTION -------------------------------------------------------------------------------- /R/binsreg/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/NAMESPACE -------------------------------------------------------------------------------- /R/binsreg/R/binsglm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsglm.R -------------------------------------------------------------------------------- /R/binsreg/R/binspwc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binspwc.R -------------------------------------------------------------------------------- /R/binsreg/R/binsqreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsqreg.R -------------------------------------------------------------------------------- /R/binsreg/R/binsreg-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsreg-package.R -------------------------------------------------------------------------------- /R/binsreg/R/binsreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsreg.R -------------------------------------------------------------------------------- /R/binsreg/R/binsreg_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsreg_functions.R -------------------------------------------------------------------------------- /R/binsreg/R/binsregselect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binsregselect.R -------------------------------------------------------------------------------- /R/binsreg/R/binstest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/R/binstest.R -------------------------------------------------------------------------------- /R/binsreg/binsreg.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/binsreg.Rproj -------------------------------------------------------------------------------- /R/binsreg/man/binsglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binsglm.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binspwc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binspwc.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binsqreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binsqreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binsreg-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binsreg-package.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binsreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binsreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binsregselect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binsregselect.Rd -------------------------------------------------------------------------------- /R/binsreg/man/binstest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/binstest.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinsglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinsglm.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinspwc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinspwc.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinsqreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinsqreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinsreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinsreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinsregselect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinsregselect.Rd -------------------------------------------------------------------------------- /R/binsreg/man/print.CCFFbinstest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/print.CCFFbinstest.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinsglm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinsglm.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinspwc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinspwc.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinsqreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinsqreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinsreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinsreg.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinsregselect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinsregselect.Rd -------------------------------------------------------------------------------- /R/binsreg/man/summary.CCFFbinstest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg/man/summary.CCFFbinstest.Rd -------------------------------------------------------------------------------- /R/binsreg_1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg_1.1.tar.gz -------------------------------------------------------------------------------- /R/binsreg_illustration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg_illustration.R -------------------------------------------------------------------------------- /R/binsreg_illustration_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg_illustration_plot.R -------------------------------------------------------------------------------- /R/binsreg_sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/R/binsreg_sim.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/README.md -------------------------------------------------------------------------------- /stata/binslogit.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binslogit.ado -------------------------------------------------------------------------------- /stata/binslogit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binslogit.pdf -------------------------------------------------------------------------------- /stata/binslogit.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binslogit.sthlp -------------------------------------------------------------------------------- /stata/binsprobit.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsprobit.ado -------------------------------------------------------------------------------- /stata/binsprobit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsprobit.pdf -------------------------------------------------------------------------------- /stata/binsprobit.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsprobit.sthlp -------------------------------------------------------------------------------- /stata/binspwc.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binspwc.ado -------------------------------------------------------------------------------- /stata/binspwc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binspwc.pdf -------------------------------------------------------------------------------- /stata/binspwc.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binspwc.sthlp -------------------------------------------------------------------------------- /stata/binsqreg.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsqreg.ado -------------------------------------------------------------------------------- /stata/binsqreg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsqreg.pdf -------------------------------------------------------------------------------- /stata/binsqreg.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsqreg.sthlp -------------------------------------------------------------------------------- /stata/binsreg.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg.ado -------------------------------------------------------------------------------- /stata/binsreg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg.pdf -------------------------------------------------------------------------------- /stata/binsreg.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg.pkg -------------------------------------------------------------------------------- /stata/binsreg.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg.sthlp -------------------------------------------------------------------------------- /stata/binsreg_checkdrop.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_checkdrop.mo -------------------------------------------------------------------------------- /stata/binsreg_cquantile.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_cquantile.mo -------------------------------------------------------------------------------- /stata/binsreg_functions.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_functions.do -------------------------------------------------------------------------------- /stata/binsreg_grids.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_grids.mo -------------------------------------------------------------------------------- /stata/binsreg_illustration.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_illustration.do -------------------------------------------------------------------------------- /stata/binsreg_illustration_plot.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_illustration_plot.do -------------------------------------------------------------------------------- /stata/binsreg_irecode.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_irecode.ado -------------------------------------------------------------------------------- /stata/binsreg_pctile.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_pctile.ado -------------------------------------------------------------------------------- /stata/binsreg_pred.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_pred.mo -------------------------------------------------------------------------------- /stata/binsreg_pval.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_pval.mo -------------------------------------------------------------------------------- /stata/binsreg_simdata.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_simdata.dta -------------------------------------------------------------------------------- /stata/binsreg_spdes.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_spdes.mo -------------------------------------------------------------------------------- /stata/binsreg_speedcomparison.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_speedcomparison.do -------------------------------------------------------------------------------- /stata/binsreg_st_spdes.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_st_spdes.mo -------------------------------------------------------------------------------- /stata/binsreg_stat.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_stat.mo -------------------------------------------------------------------------------- /stata/binsreg_uniq.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsreg_uniq.mo -------------------------------------------------------------------------------- /stata/binsregselect.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsregselect.ado -------------------------------------------------------------------------------- /stata/binsregselect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsregselect.pdf -------------------------------------------------------------------------------- /stata/binsregselect.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binsregselect.sthlp -------------------------------------------------------------------------------- /stata/binstest.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binstest.ado -------------------------------------------------------------------------------- /stata/binstest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binstest.pdf -------------------------------------------------------------------------------- /stata/binstest.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/binstest.sthlp -------------------------------------------------------------------------------- /stata/stata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nppackages/binsreg/HEAD/stata/stata.toc --------------------------------------------------------------------------------