makeDmatrix: Make sparse matrix of dummies from factor list

Description Usage Arguments Details Value Examples

View source: R/utils.R

Description

Given a list of factors, return the matrix of dummies as a sparse matrix.

Usage

1

Arguments

fl

list of factors.

weights

numeric vector. Multiplied into the rows.

Details

The function returns the model matrix for a list of factors. This matrix is not used internally by the package, but it's used in some of the documentation for illustrative purposes.

Value

Returns a sparse matrix.

Examples

1
2
3
  fl <- lapply(1:3, function(i) factor(sample(3,10,replace=TRUE)))
  fl
  makeDmatrix(fl, weights=seq(0.1,1,0.1))

sgaure/lfe documentation built on Dec. 27, 2019, 8:06 a.m.