Alpha Level

Alpha Level

The alpha level (αis the criterion for how low a probability needs to be to count as "unlikely"; a probability of Type I error that we are willing to accept. A common alpha level is α.05 or less, meaning we are willing to accept a 5% or less error rate for drawing the wrong conclusion about the DGP based on our data (i.e., the empty model is true but we rejected it).


    • Related Articles

    • confint()

      The confint() function computes confidence intervals (based on the t-distribution) for one or more parameters in a fitted model. The default confidence level is 95%. To adjust the confidence level, use the "level = " argument. Example 1: You can use ...
    • Bonferroni Adjustment

      A Bonferroni adjustment (also known as a Bonferroni correction) is used when making simultaneous comparisons, to make sure that your overall error rate is reduced. You simply divide your acceptable alpha (e.g., .05) by the number of simultaneous ...
    • gf_jitter()

      The gf_jitter() function will generate a jitter plot. A jitter plot is a point plot (similar to a scatter plot, such as gf_point()) but the points are moved slightly ("jittered") so that they do not overlap as much. This can help make it easier to ...
    • Statistical Model

      A statistical model is a simplified way of describing how data are generated. It helps us separate what we can explain using known information from what we cannot explain perfectly. We use statistical models for three main purposes: (1) to understand ...
    • Bar Graphs vs Histograms

      What is the difference between a bar graph and a histogram?  Bar graphs and histograms are both visualizations of data, but they visualize different types of data. Bar graphs are used for categorical variables, while histograms are used for ...