
Correlation One-Line Test
Read It: Correlation One-Line Test
We can also conduct a one-line test for correlation using the stats.pearsonr
command from the scipy.stats
library. You can read more about the command in the documentation linked here(link is external). Below, we demonstrate the implementation of this command in a video.
Watch It: Video - One Line Test Correlation (2:31 minutes)
Click here for a transcript.
Credit: © Penn State is licensed under CC BY-NC-SA 4.0(link is external)
Try It: GOOGLE COLAB
- Click the Google Colab file used in the video here(link is external).
- 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.
- Once you have it saved in your Drive, try to edit the following code to implement the one-line correlation test.
Note: You must be logged into your PSU Google Workspace in order to access the file.
1 2 3 4 5 6 7 8 | # create some data df = pd.DataFrame({ 'x' : np.random.randint( 0 , 100 , 1000 ), 'y' : np.random.randint( 0 , 200 , 1000 )}) # run the test with alternative = greater results = ... print ( 'Correlation Coefficient: ' , ...) print ( 'p-value: ' , ...) |
Once you have implemented this code on your own, come back to this page to test your knowledge.