├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── api.rst ├── conf.py ├── index.rst ├── introduction.rst ├── legal.rst ├── notebooks │ ├── model_library.ipynb │ └── testing_firm_conduct.ipynb ├── references.rst ├── templates │ ├── class_with_signature.rst │ ├── class_without_methods.rst │ ├── class_without_signature.rst │ ├── nbsphinx_epilog.rst │ └── nbsphinx_prolog.rst └── tutorial.rst ├── pyRVtest ├── __init__.py ├── configurations │ ├── __init__.py │ └── formulation.py ├── construction.py ├── data │ ├── __init__.py │ ├── f_critical_values_power_rho.csv │ └── f_critical_values_size_rho.csv ├── economies │ ├── __init__.py │ ├── economy.py │ └── problem.py ├── options.py ├── primitives.py ├── results │ ├── __init__.py │ ├── problem_results.py │ └── results.py ├── utilities │ ├── __init__.py │ └── basics.py └── version.py ├── readthedocs.yml ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/README.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/legal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/legal.rst -------------------------------------------------------------------------------- /docs/notebooks/model_library.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/notebooks/model_library.ipynb -------------------------------------------------------------------------------- /docs/notebooks/testing_firm_conduct.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/notebooks/testing_firm_conduct.ipynb -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/templates/class_with_signature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/templates/class_with_signature.rst -------------------------------------------------------------------------------- /docs/templates/class_without_methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/templates/class_without_methods.rst -------------------------------------------------------------------------------- /docs/templates/class_without_signature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/templates/class_without_signature.rst -------------------------------------------------------------------------------- /docs/templates/nbsphinx_epilog.rst: -------------------------------------------------------------------------------- 1 | .. raw:: latex 2 | 3 | \end{landscape} -------------------------------------------------------------------------------- /docs/templates/nbsphinx_prolog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/templates/nbsphinx_prolog.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /pyRVtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/__init__.py -------------------------------------------------------------------------------- /pyRVtest/configurations/__init__.py: -------------------------------------------------------------------------------- 1 | """Configuration classes.""" 2 | -------------------------------------------------------------------------------- /pyRVtest/configurations/formulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/configurations/formulation.py -------------------------------------------------------------------------------- /pyRVtest/construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/construction.py -------------------------------------------------------------------------------- /pyRVtest/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/data/__init__.py -------------------------------------------------------------------------------- /pyRVtest/data/f_critical_values_power_rho.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/data/f_critical_values_power_rho.csv -------------------------------------------------------------------------------- /pyRVtest/data/f_critical_values_size_rho.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/data/f_critical_values_size_rho.csv -------------------------------------------------------------------------------- /pyRVtest/economies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/economies/__init__.py -------------------------------------------------------------------------------- /pyRVtest/economies/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/economies/economy.py -------------------------------------------------------------------------------- /pyRVtest/economies/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/economies/problem.py -------------------------------------------------------------------------------- /pyRVtest/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/options.py -------------------------------------------------------------------------------- /pyRVtest/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/primitives.py -------------------------------------------------------------------------------- /pyRVtest/results/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/results/__init__.py -------------------------------------------------------------------------------- /pyRVtest/results/problem_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/results/problem_results.py -------------------------------------------------------------------------------- /pyRVtest/results/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/results/results.py -------------------------------------------------------------------------------- /pyRVtest/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | """General functionality.""" 2 | -------------------------------------------------------------------------------- /pyRVtest/utilities/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/utilities/basics.py -------------------------------------------------------------------------------- /pyRVtest/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/pyRVtest/version.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyatarascina/pyRVtest/HEAD/tox.ini --------------------------------------------------------------------------------