Generation

generate functionSat, 29 Apr 2023

> posthoc <- glht(anova_result, linfct = mcp(Condition_SNB = "Tukey")) > summary(posthoc) Using R, please write me a code to create a table of these results to be copied and pasted in LateX

library(multcomp) anova_result <- aov(Trait ~ Condition, data = data) posthoc <- glht(anova_result, linfct = mcp(Condition_SNB = "Tukey")) summary(posthoc) # this is the code for a latex table library(texreg) screenreg(anova_result, posthoc)

Questions about programming?Chat with your personal AI assistant