print.fixest_vcov: A print facility for the VCOVs from 'fixest' objects.

View source: R/methods.R

print.fixest_vcovR Documentation

A print facility for the VCOVs from fixest objects.

Description

Prints a VCOV obtained from fixest, on top of a regular matrix display, its main use is to: i) report how the VCOV was computed, and ii) hide the information on attributes

Usage

## S3 method for class 'fixest_vcov'
print(x, ...)

Arguments

x

A fixest_vcov object, obtained from vcov.fixest.

...

Not used.

Value

This function does not return anything.

Author(s)

Laurent Berge

Examples


# 1) fixest estimation
est = feols(Petal.Length ~ Sepal.Width, iris)

# 2) print the VCOV; this method hides the attributes
vcov(est)

# 3) showing the attributes if needed
attributes(vcov(est))



fixest documentation built on March 18, 2026, 9:06 a.m.