View source: R/max_contribution.R
max_contribution | R Documentation |
These functions analyze contributions to aggregates, assuming that the aggregates are calculated
using a dummy matrix with the formula: z = t(x) %*% y
.
max_contribution(
x,
y,
n = 1,
id = NULL,
output = "y",
drop = TRUE,
decreasing = TRUE,
remove_fraction = NULL,
do_abs = TRUE
)
n_contributors(x, y = rep(1L, nrow(x)), id = NULL, output = "n_contr", ...)
x |
A (sparse) dummy matrix |
y |
A numeric vector of input values (contributions). |
n |
Integer. The number of largest contributors to identify for each aggregate. Default is 1. |
id |
An optional vector for grouping. When non-NULL, major contributions are
found after aggregation within each group specified by |
output |
A character vector specifying the desired output. Possible values:
|
drop |
Logical. If TRUE (default) and |
decreasing |
Logical. If TRUE (default), finds the largest contributors. If FALSE, finds the smallest contributors. |
remove_fraction |
A numeric vector containing values in the interval
|
do_abs |
Logical. If TRUE (default), uses the absolute values of the summed contributions. The summation is performed for all contributions from the same contributor, within each aggregate being computed. |
... |
Further arguments to |
The max_contribution
function identifies the largest contributions to these aggregates, while
the wrapper function n_contributors
is designed specifically to count the number of contributors
for each aggregate.
A list or a single element, depending on the values of the output
and drop
parameters.
z <- SSBtoolsData("magnitude1")
a <- ModelMatrix(z, formula = ~sector4 + geo, crossTable = TRUE)
cbind(a$crossTable,
y = max_contribution(x = a$modelMatrix, y = z$value, n = 2),
id = max_contribution(x = a$modelMatrix, y = z$value, n = 2, output = "id"),
n = n_contributors( x = a$modelMatrix, y = z$value, n = 2))
cbind(a$crossTable,
y = max_contribution(x = a$modelMatrix, y = z$value, n = 3, id = z$company),
id = max_contribution(a$modelMatrix, z$value, 3, id = z$company, output = "id"))
max_contribution(x = a$modelMatrix,
y = z$value,
n = 3,
id = z$company,
output = c("y", "id", "n_contr", "sums"))
as.data.frame(
max_contribution(x = a$modelMatrix,
y = z$value,
n = 3,
id = z$company,
output = c("y", "id", "n_contr", "sums", "n_contr_all", "sums_all"),
remove_fraction = c(B = 1)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.