Package for performing statistical inferences in the R programming language.
Though the R programming language contains a wide variety of built-in functions for calculating distributions and values used in common inference tests, I couldn't be bothered to remember them all because they don't have any consistent naming conventions.
For my stats course at the University of Florida, we were allowed to use the R language (and R Studio) on homeworks, quizzes, and exams. I developed this package to make my life MUCH easier so that I could more easily recall the functions I needed for certain problems. To that end, I used the following naming conventions so that I could find functions more quickly (consider the functions Mean.1Pop.CI
and Mean.1Pop.Hypothesis
as two guiding examples):
Mean
). So all I had to do was simply identify what statistic the question was looking for.1Pop
) or two populations (2Pop
). In the case of linear regression, I used the alternatives of 1Regressor
and 2Regressor
.CI
denotes Confidence Interval, whereas Hypothesis
denotes a formal hypothesis test.(Translation: I got lazy when taking stats and found a creative way to reduce my workload. Sue me.)
I'll leave you with a quote from Bill Gates:
"A lazy person will find an easy way to do [the job]."
Look, stats is cool and all, but I'm a programmer at heart :)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.