adjWeights | R Documentation |
This function provides a trimming procedure to force the weights to be within the provided boundaries
adjWeights(weights, lower = -Inf, upper = +Inf)
weights |
A numerical vector of weights |
lower |
A numerical vector of lower bounds |
upper |
A numerical vector of upper bounds |
The function produces trimmed weights, which will be the input for the
rounding technique before integer calibration. When the weights are bounded,
the function rounds-up the lower bounds and rounds-down the upper. If the
condition ceiling(lower) > floor(upper)
is true, an error is
returned.
A vector of adjusted weights
library(inca)
w <- rnorm(10, 0, 2)
aw <- adjWeights(w, runif(10, -3, -1), runif(10, 1, 3))
hist(aw, main = "Adjusted weights")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.