Coder Social home page Coder Social logo

Comments (3)

lrberge avatar lrberge commented on August 26, 2024

It is supported, there's the argument extraline doing that. Of course, you have to compute the means on your own.

Here's an example:

base = iris
names(base) = c("y", "x1", "x2", "x3", "species")
s = base$species

library(fixest)
est_setosa = feols(y ~ x1 + x2, base[s == "setosa",])
est_versicolor = feols(y ~ x1 + x2, base[s == "versicolor",])
est_virginica = feols(y ~ x1 + x2, base[s == "virginica",])

all_means = sapply(c("setosa", "versicolor", "virginica"),
                   function(v) mean(base[s == v, "y"]))

etable(est_setosa, est_versicolor, est_virginica, extraline = list("$\\bar{y}$"=all_means), tex = TRUE)

This leads to:
image

To place the line after the statistics you need to add a special markup in curly brackets (where:stat) at the beginning of the row name:

etable(est_setosa, est_versicolor, est_virginica, extraline = list("{where:stat}$\\bar{y}$"=all_means), tex = TRUE)

Which leads to:
image

You can add as many lines as you wish. For more customization of the table, there's this vignette.

from fixest.

bgchamps avatar bgchamps commented on August 26, 2024

from fixest.

lrberge avatar lrberge commented on August 26, 2024

Super :-), I'm closing then.

from fixest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.