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) library(multcompView) # load data data(pwlf) posthoc <- glht(pwlf$glht, linfct = mcp(factor(pwlf$condition) = "Tukey")) # write table multcompView::mctable(posthoc)

Questions about programming?Chat with your personal AI assistant