| contr.wsum | R Documentation | 
Returns a category-weighted contrast matrix
contr.wsum(x, weights = rep.int(1.0, length(x)), sparse = FALSE)
x | 
 a factor vector  | 
weights | 
 a vector of weights with the same length as   | 
sparse | 
 ogical indicating if the result should be sparse (of class   | 
Computes a contrast matrix similar to contr.sum. The
reference category is however weighted by the sum of weights of the
other categories.
A matrix with nlevels(x) rows and nlevels(x)- 1
columns.
Reto Burgin
contr.sum
x <- factor(rep(LETTERS[1:3], c(10, 20, 30)))
contr.wsum(x) # standard call
contr.wsum(x, sparse = TRUE) # using a sparse matrix
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.