EME 210
Data Analytics for Energy Systems

(link is external) (link is external)

Single Proportion One-Line Test

PrintPrint

Single Proportion One-Line Test

Read It: Single Proportion One-Line Test

To conduct the one-line test for a single proportion hypothesis test, you will use a one sample binomial test. Below, we demonstrate how to implement this code.

 Watch It: Video - Single Proportion OneLine Test (3:54 minutes)

Click here for a transcript.

We're back in our one-line test, hypothesis test video. In this video, we're going to focus on the hypothesis test for a single proportion. And so, here our null hypothesis is that the proportion is equal to 50 percent, and our alternative is that it's less than that, in effect, looking at how frequently windfall wind generation fell below capacities during the Texas 2021 cold snap. And so, in our previous lesson we went over how to do the randomization procedure for this test. And we start off with simulating random data using random binomial. Then we calculate the original, or the sampling distribution of proportions, calculate the data sample, and then we plotted it. And eventually got a p-value equal to zero, which led us to reject the null hypothesis that the wind actually fell below capacity less than 50 percent of the time.

So, if we want to make the one-liner test for this, it involves a couple extra steps. We're still going to be using that stats.cypi library, but before we can actually implement the test we need to define two variables, the first is success rate. And so, this is how often we were successful. And so here, when success rate is defined by the length of wind in which wind was above 6.1, above capacity, and then we need to define the sample size, which is just the total number of variables or data points. And so then our actual one-line test is stats dot binome underscore test, so binomial test. We give it x equals our success rate, n equals our sample size, and again we specify the alternative equal to less. And if you were doing a right-tailed test you would change this to greater, for example.

But in this case, following what we did up here, we're going to do a left-tailed test. So we can run this. We've got a warning that this command is currently being phased out. So eventually we'll need to use this new command, binom test, but for now it's still working. And essentially, it automatically prints out this p-value here. And so, because of that we can compare to this and look that they're very similar. Once again our one-line test is showing a bit more specificity in that number, but is still very, very close to zero. So again, we reject the null hypothesis.

Credit: © Penn State is licensed under CC BY-NC-SA 4.0(link is external)

Try It: Google Colab

  1. Click the Google Colab file used in the video here(link is external).
  2. Go to the Colab file and click "File" then "Save a copy in Drive", this will create a new Colab file that you can edit in your own Google Drive account.
  3. Once you have it saved in your Drive, ry to edit the following code to run the single proportion one-line test. Remember to import the libraries and run the code to create some data.

Note that you must be logged into your PSU Google Workspace in order to access the file.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Libraries
import numpy as np
import scipy.stats as stats
 
# create some data
x = np.random.randint(0,100,1000)
 
# initialize the variables
success_rate = ... # success = the number of data points in x above 50
samp_size = ...    # sample size = the total number of data points in x
 
# implement one-line test
results = ...
 
results.pvalue

Once you have implemented this code on your own, come back to this page to test your knowledge.


 Assess It: Check Your Knowledge

Knowledge Check