How can I make a collapse with glue package using RMarkdown?
问题 I've been trying to automate the results of some df table in latex using the glue and stargazer packages, but I haven't had any results (what I want is for the meaning "^{*}" to appear next to each value as it is in the table) to use then RMarkdown. What I want to get: My current ugly and error-prone fix: library(dplyr) library(glue) library(stargazer) X1 = c(4.70e1, 4.72e1, 4.76e1, 2.73e20) X2 = c(4.67e1, 4.69e1, 4.77e1, 2.05e20) tab.out = data.frame(X1, X2) tab.out$max<-apply(tab.out, 1,