huff 1.4.1__tar.gz → 1.5.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.
- {huff-1.4.1 → huff-1.5.1}/PKG-INFO +13 -3
- {huff-1.4.1 → huff-1.5.1}/README.md +12 -2
- {huff-1.4.1 → huff-1.5.1}/huff/models.py +1020 -163
- huff-1.5.1/huff/tests/data/Wieland2015.xlsx +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/tests_huff.py +142 -24
- {huff-1.4.1 → huff-1.5.1}/huff.egg-info/PKG-INFO +13 -3
- {huff-1.4.1 → huff-1.5.1}/setup.py +1 -1
- huff-1.4.1/huff/tests/data/Wieland2015.xlsx +0 -0
- {huff-1.4.1 → huff-1.5.1}/MANIFEST.in +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/__init__.py +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/gistools.py +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/ors.py +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/osm.py +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/__init__.py +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.cpg +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.dbf +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.prj +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.qmd +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.shp +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach.shx +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.cpg +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.dbf +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.prj +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.qmd +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.shp +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_new_supermarket.shx +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.cpg +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.dbf +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.prj +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.qmd +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.shp +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff/tests/data/Haslach_supermarkets.shx +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff.egg-info/SOURCES.txt +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff.egg-info/dependency_links.txt +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff.egg-info/requires.txt +0 -0
- {huff-1.4.1 → huff-1.5.1}/huff.egg-info/top_level.txt +0 -0
- {huff-1.4.1 → huff-1.5.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huff
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.1
|
4
4
|
Summary: huff: Huff Model Market Area Analysis
|
5
5
|
Author: Thomas Wieland
|
6
6
|
Author-email: geowieland@googlemail.com
|
@@ -18,14 +18,24 @@ Thomas Wieland [ORCID](https://orcid.org/0000-0001-5168-9846) [EMail](mailto:geo
|
|
18
18
|
See the /tests directory for usage examples of most of the included functions.
|
19
19
|
|
20
20
|
|
21
|
+
## Updates v1.5.1
|
22
|
+
- Extensions:
|
23
|
+
- HuffModel.ml_fit(): Fit Huff model parameters by empirical total market areas
|
24
|
+
- HuffModel.summary(): Goodnes-of-fit depends on fit_by
|
25
|
+
- load_market_areas(): Loading table with totals and including into InteractionMatrix, HuffModel and MCIModel objects
|
26
|
+
- Bugfixes:
|
27
|
+
- InteractionMatrix.summary(): NoneType parameter
|
28
|
+
- InteractionMatrix.huff_ml_fit(): Update estimates possible even if fit algorithm did not converge
|
29
|
+
|
30
|
+
|
21
31
|
## Features
|
22
32
|
|
23
33
|
- **Huff Model**:
|
24
34
|
- Defining origins and destinations with weightings
|
25
35
|
- Creating interaction matrix from origins and destinations
|
26
|
-
- Market simulation with basic Huff Model
|
27
36
|
- Different function types: power, exponential, logistic
|
28
|
-
- Huff model parameter estimation via Maximum Likelihood (ML)
|
37
|
+
- Huff model parameter estimation via Maximum Likelihood (ML) by probalities and customer flows
|
38
|
+
- Huff model market simulation
|
29
39
|
- **Multiplicative Competitive Interaction Model**:
|
30
40
|
- Log-centering transformation of interaction matrix
|
31
41
|
- Fitting MCI model with >= 2 independent variables
|
@@ -10,14 +10,24 @@ Thomas Wieland [ORCID](https://orcid.org/0000-0001-5168-9846) [EMail](mailto:geo
|
|
10
10
|
See the /tests directory for usage examples of most of the included functions.
|
11
11
|
|
12
12
|
|
13
|
+
## Updates v1.5.1
|
14
|
+
- Extensions:
|
15
|
+
- HuffModel.ml_fit(): Fit Huff model parameters by empirical total market areas
|
16
|
+
- HuffModel.summary(): Goodnes-of-fit depends on fit_by
|
17
|
+
- load_market_areas(): Loading table with totals and including into InteractionMatrix, HuffModel and MCIModel objects
|
18
|
+
- Bugfixes:
|
19
|
+
- InteractionMatrix.summary(): NoneType parameter
|
20
|
+
- InteractionMatrix.huff_ml_fit(): Update estimates possible even if fit algorithm did not converge
|
21
|
+
|
22
|
+
|
13
23
|
## Features
|
14
24
|
|
15
25
|
- **Huff Model**:
|
16
26
|
- Defining origins and destinations with weightings
|
17
27
|
- Creating interaction matrix from origins and destinations
|
18
|
-
- Market simulation with basic Huff Model
|
19
28
|
- Different function types: power, exponential, logistic
|
20
|
-
- Huff model parameter estimation via Maximum Likelihood (ML)
|
29
|
+
- Huff model parameter estimation via Maximum Likelihood (ML) by probalities and customer flows
|
30
|
+
- Huff model market simulation
|
21
31
|
- **Multiplicative Competitive Interaction Model**:
|
22
32
|
- Log-centering transformation of interaction matrix
|
23
33
|
- Fitting MCI model with >= 2 independent variables
|