My goal is to minimize the amount of text needed to report the output of a statistical test when using R Markdown. However, for analyses that have multiple terms, it can get pretty unwieldy. For example, a term could be named something like conditionmortality salience:anxiety. This is 1) not pretty and 2) quite long.
A potential solution is to number each term, so that we can simply do report(results, "M1", term = 1) to report the results of a specific term. It's unfortunately not descriptive, but I think it might be the okay since terms don't tend to shuffle around anyway.
My goal is to minimize the amount of text needed to report the output of a statistical test when using R Markdown. However, for analyses that have multiple terms, it can get pretty unwieldy. For example, a term could be named something like
conditionmortality salience:anxiety
. This is 1) not pretty and 2) quite long.A potential solution is to number each term, so that we can simply do
report(results, "M1", term = 1)
to report the results of a specific term. It's unfortunately not descriptive, but I think it might be the okay since terms don't tend to shuffle around anyway.What do you think?