290, got rid of the extra modelsummary stuff
install.packages("modelsummary") library(modelsummary) z<-read.csv("entrepreneurs.csv") summary(z) aggregate(.~z[,5],z[(3:10)],mean) s<-function(i){j<-z[z[,5]!=i,] j$b<-ifelse(j[,5]=="control",0,1) modelsummary(list(lm(j[,10]~b,j),lm(j[,11]~b,j)),stars=TRUE)} s("true winners") s("treated")