reilly: Law of retail gravitation by Reilly

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Calculating the proportion of sales from an intermediate town between two cities or retail locations

Usage

1
reilly(P_a, P_b, D_a, D_b, gamma = 1, lambda = 2, relation = NULL)

Arguments

P_a

a single numeric value of attractivity/population size of location/city a

P_b

a single numeric value of attractivity/population size of location/city b

D_a

a single numeric value of the distance from the intermediate town to location/city a

D_b

a single numeric value of the distance from the intermediate town to location/city b

gamma

a single numeric value for the exponential weighting of size (default: 1)

lambda

a single numeric value for the exponential weighting of distance (transport costs, default: -2)

relation

a single numeric value containing the relation of trade between cities/locations a and b (only needed if the distance decay parameters has to be estimated instead of the sales flows)

Details

The law of retail gravitation by Reilly (1929, 1931) was the first spatial interaction model for retailing and services. This "law" states that two cities/locations attract customers from an intermediate town proportionally to the attractivity/population size of the two cities/locations and in inverse proportion to the squares of the transport costs (e.g. distance, travelling time) from these two locations to the intermediate town. But both variables can be weighted by exponents. The distance exponent can also be derived from empirical data (if an empirical relation is stated). The breaking point formula by Converse (1949) is a separate transformation of Reilly's law (see the function converse). The models by Reilly and Converse are simple spatial interaction models and are considered as deterministic market area models due to their exact allocation of demand origins to locations. A probabilistic approach including a theoretical framework was developed by Huff (1962) (see the function huff).

Value

If no relation is stated, a list with three values:

relation_AB

relation of trade between cities/locations a and b

prop_A

proportion of city/location a

prop_B

proportion of city/location b

If a relation is stated instead of weighting parameters, a single numeric value containing the estimated distance decay parameter.

Author(s)

Thomas Wieland

References

Berman, B. R./Evans, J. R. (2012): “Retail Management: A Strategic Approach”. 12th edition. Bosten : Pearson.

Converse, P. D. (1949): “New Laws of Retail Gravitation”. In: Journal of Marketing, 14, 3, p. 379-384.

Huff, D. L. (1962): “Determination of Intra-Urban Retail Trade Areas”. Los Angeles : University of California.

Levy, M./Weitz, B. A. (2012): “Retailing management”. 8th edition. New York : McGraw-Hill Irwin.

Loeffler, G. (1998): “Market areas - a methodological reflection on their boundaries”. In: GeoJournal, 45, 4, p. 265-272

Reilly, W. J. (1929): “Methods for the Study of Retail Relationships”. Studies in Marketing, 4. Austin : Bureau of Business Research, The University of Texas.

Reilly, W. J. (1931): “The Law of Retail Gravitation”. New York.

See Also

huff, converse

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Example from Converse (1949):
reilly (39851, 37366, 27, 25)
# two cities (pop. size 39.851 and 37.366) 
# with distances of 27 and 25 miles to intermediate town
myresults <- reilly (39851, 37366, 27, 25)
myresults$prop_A
# proportion of location a
# Distance decay parameter for the given sales relation:
reilly (39851, 37366, 27, 25, gamma = 1, lambda = NULL, relation = 0.9143555)   
# returns 2

Example output

$relation_AB
[1] 0.9143555

$prop_A
[1] 0.477631

$prop_B
[1] 0.522369

[1] 0.477631
[1] 2.000001

REAT documentation built on Sept. 5, 2021, 5:18 p.m.