I found the same issue here: R2 for several fixed effects models using fixest::feols and modelsummary
I followed the suggestion provided and it solved my problem on Windows. But this did not solve the problem on my Mac. In fact, after running the following snippet, msummary()
stopped showing results in the Viewer tab of RStudio. It was able to generate a Word file with the results, but those results did not include R2. If I remove the argument output = "file name"
from msummary()
, I can see the results (without R2) on the Viewer tab.
library(remotes)
install_github("lrberge/fixest")
install_github("easystats/performance")
install_github("vincentarelbundock/modelsummary")
Any insights will be highly appreciated. Thanks.