Learn R Programming

fixest (version 0.5.1)

weights.fixest: Extracts the weights from a fixest object

Description

Simply extracts the weights used to estimate a fixest model.

Usage

# S3 method for fixest
weights(object, ...)

Arguments

object

A fixest object.

...

Not currently used.

Value

Returns a vector of the same length as the number of observations in the original data set. Ignored observations due to NA or perfect fit are re-introduced and their weights set to NA.

See Also

feols, fepois, feglm, fenegbin, feNmlm.

Examples

Run this code
# NOT RUN {
est = feols(Petal.Length ~ Petal.Width, iris, weights = ~as.integer(Sepal.Length) - 3.99)
weights(est)

# }

Run the code above in your browser using DataLab