decay_linear | R Documentation |
Returns a linear weighting function to be used inside accessibility calculating functions.
This function is generic over any kind of numeric travel cost, such as distance, time and money.
decay_linear(cutoff)
cutoff |
A |
A function
that takes a generic travel cost vector (numeric
) as
an input and returns a list
of weight vectors (a list of numeric
vectors, named after the arguments passed to the decay function).
Other decay functions:
decay_binary()
,
decay_exponential()
,
decay_logistic()
,
decay_power()
,
decay_stepped()
weighting_function <- decay_linear(cutoff = 30)
weighting_function(c(20, 35))
weighting_function <- decay_linear(cutoff = c(30, 45))
weighting_function(c(20, 35))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.