WillemSleegers / tidystats-v0.3

R package to produce a tidy output file of statistical models.
Other
22 stars 2 forks source link

Give each term a number? #49

Closed WillemSleegers closed 7 years ago

WillemSleegers commented 7 years ago

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?

WillemSleegers commented 7 years ago

I implemented it and I think it's a nice solution!