SearchLibrium 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- searchlibrium-0.0.1/PKG-INFO +21 -0
- searchlibrium-0.0.1/README.md +5 -0
- searchlibrium-0.0.1/SearchLibrium.egg-info/PKG-INFO +21 -0
- searchlibrium-0.0.1/SearchLibrium.egg-info/SOURCES.txt +32 -0
- searchlibrium-0.0.1/SearchLibrium.egg-info/dependency_links.txt +1 -0
- searchlibrium-0.0.1/SearchLibrium.egg-info/not-zip-safe +1 -0
- searchlibrium-0.0.1/SearchLibrium.egg-info/top_level.txt +1 -0
- searchlibrium-0.0.1/old_code/__init__.py +8 -0
- searchlibrium-0.0.1/old_code/_choice_model.py +1363 -0
- searchlibrium-0.0.1/old_code/_device.py +145 -0
- searchlibrium-0.0.1/old_code/akshay_test.py +125 -0
- searchlibrium-0.0.1/old_code/boxcox_functions.py +116 -0
- searchlibrium-0.0.1/old_code/draws.py +128 -0
- searchlibrium-0.0.1/old_code/harmony.py +1261 -0
- searchlibrium-0.0.1/old_code/latent_class_constrained.py +434 -0
- searchlibrium-0.0.1/old_code/latent_class_mixed_model.py +1566 -0
- searchlibrium-0.0.1/old_code/latent_class_model.py +1281 -0
- searchlibrium-0.0.1/old_code/latent_main.py +945 -0
- searchlibrium-0.0.1/old_code/main.py +1880 -0
- searchlibrium-0.0.1/old_code/main_ol.py +127 -0
- searchlibrium-0.0.1/old_code/misc.py +303 -0
- searchlibrium-0.0.1/old_code/mixed_logit.py +1553 -0
- searchlibrium-0.0.1/old_code/multinomial_logit.py +559 -0
- searchlibrium-0.0.1/old_code/ordered_logit.py +1641 -0
- searchlibrium-0.0.1/old_code/ordered_logit_mixed.py +103 -0
- searchlibrium-0.0.1/old_code/ordered_logit_multinomial.py +701 -0
- searchlibrium-0.0.1/old_code/r_ordered.py +168 -0
- searchlibrium-0.0.1/old_code/rrm.py +521 -0
- searchlibrium-0.0.1/old_code/search.py +3485 -0
- searchlibrium-0.0.1/old_code/siman.py +1023 -0
- searchlibrium-0.0.1/old_code/threshold.py +777 -0
- searchlibrium-0.0.1/pyproject.toml +18 -0
- searchlibrium-0.0.1/setup.cfg +4 -0
- searchlibrium-0.0.1/setup.py +59 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SearchLibrium
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A wrapper for Searchlogit with extended functionality for ABM models.
|
|
5
|
+
Home-page: https://github.com/zahern/HypothesisX
|
|
6
|
+
Author: Zeke Ahern, Alexander Paz Prithvi Beeramole, Robert Burdett
|
|
7
|
+
Author-email: Zeke Ahern <z.ahern@qut.edu.au>
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# SearchLibrium
|
|
19
|
+
## Econometric Models driven by Search and built on SearchLogit and MetaCountRegresssor
|
|
20
|
+
|
|
21
|
+
This repository contains the SearchLibrium package, which is a Python library designed for econometric models driven by search. It builds upon the foundations of SearchLogit and MetaCountRegressor, providing a robust framework for estimating data count models.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
# SearchLibrium
|
|
3
|
+
## Econometric Models driven by Search and built on SearchLogit and MetaCountRegresssor
|
|
4
|
+
|
|
5
|
+
This repository contains the SearchLibrium package, which is a Python library designed for econometric models driven by search. It builds upon the foundations of SearchLogit and MetaCountRegressor, providing a robust framework for estimating data count models.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SearchLibrium
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A wrapper for Searchlogit with extended functionality for ABM models.
|
|
5
|
+
Home-page: https://github.com/zahern/HypothesisX
|
|
6
|
+
Author: Zeke Ahern, Alexander Paz Prithvi Beeramole, Robert Burdett
|
|
7
|
+
Author-email: Zeke Ahern <z.ahern@qut.edu.au>
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# SearchLibrium
|
|
19
|
+
## Econometric Models driven by Search and built on SearchLogit and MetaCountRegresssor
|
|
20
|
+
|
|
21
|
+
This repository contains the SearchLibrium package, which is a Python library designed for econometric models driven by search. It builds upon the foundations of SearchLogit and MetaCountRegressor, providing a robust framework for estimating data count models.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
setup.py
|
|
4
|
+
SearchLibrium.egg-info/PKG-INFO
|
|
5
|
+
SearchLibrium.egg-info/SOURCES.txt
|
|
6
|
+
SearchLibrium.egg-info/dependency_links.txt
|
|
7
|
+
SearchLibrium.egg-info/not-zip-safe
|
|
8
|
+
SearchLibrium.egg-info/top_level.txt
|
|
9
|
+
old_code/__init__.py
|
|
10
|
+
old_code/_choice_model.py
|
|
11
|
+
old_code/_device.py
|
|
12
|
+
old_code/akshay_test.py
|
|
13
|
+
old_code/boxcox_functions.py
|
|
14
|
+
old_code/draws.py
|
|
15
|
+
old_code/harmony.py
|
|
16
|
+
old_code/latent_class_constrained.py
|
|
17
|
+
old_code/latent_class_mixed_model.py
|
|
18
|
+
old_code/latent_class_model.py
|
|
19
|
+
old_code/latent_main.py
|
|
20
|
+
old_code/main.py
|
|
21
|
+
old_code/main_ol.py
|
|
22
|
+
old_code/misc.py
|
|
23
|
+
old_code/mixed_logit.py
|
|
24
|
+
old_code/multinomial_logit.py
|
|
25
|
+
old_code/ordered_logit.py
|
|
26
|
+
old_code/ordered_logit_mixed.py
|
|
27
|
+
old_code/ordered_logit_multinomial.py
|
|
28
|
+
old_code/r_ordered.py
|
|
29
|
+
old_code/rrm.py
|
|
30
|
+
old_code/search.py
|
|
31
|
+
old_code/siman.py
|
|
32
|
+
old_code/threshold.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
old_code
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import searchlogit._device as dev
|
|
2
|
+
import searchlogit.misc
|
|
3
|
+
from searchlogit.latent_class_mixed_model import LatentClassMixedModel
|
|
4
|
+
from searchlogit.latent_class_model import LatentClassModel
|
|
5
|
+
from searchlogit.mixed_logit import MixedLogit
|
|
6
|
+
from searchlogit.multinomial_logit import MultinomialLogit
|
|
7
|
+
from searchlogit.search import Search
|
|
8
|
+
from searchlogit.latent_class_constrained import LatentClassConstrained
|