JanakiGanesh / dsc-one-sample-z-test-lab

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

One-Sample z-test - Lab

Introduction

In this lab, you'll perform a few quick tests to help you better understand how hypothesis testing works.

Objectives

You will be able to:

  • Explain use cases for a 1-sample z-test
  • Set up null and alternative hypotheses
  • Use the z-table and scipy methods to acquire the p value for a given z-score
  • Calculate and interpret p-value for significance of results

Exercise 1

A fast-food chain claims that the mean time to order food at their restaurants is 60 seconds, with a standard deviation of 30 seconds. You decide to put this claim to the test and go to one of the restaurants to observe actual waiting times. You take a sample of 36 customers and find that the mean order time was 75 seconds. Does this finding provide enough evidence to contradict the fast food chain's claim of fast service?

Follow the 5 steps shown in previous lesson and use $\alpha$ = 0.05.

# State your null and alternative hypotheses
# Your solution here


# (p = 0.0013498980316301035, z = 3.0)
# Interpret the results in terms of the p-value

Exercise 2

25 students complete a preparation program for taking the SAT test. Here are the SAT scores from the 25 students who completed the program:

434 694 457 534 720 400 484 478 610 641 425 636 454 514 563 370 499 640 501 625 612 471 598 509 531

We know that the population average for SAT scores is 500 with a standard deviation of 100.

Are our 25 students’ SAT scores significantly higher than the population's mean score?

Note that the SAT preparation program claims that it will increase (and not decrease) the SAT score. So, you can conduct a one-directional test. (alpha = .05).

# State your hypotheses 
# Give your solution here 



# p = 0.03593031911292577, z = 1.8
# Interpret the results in terms of the p-value

Summary

In this lesson, you conducted a couple of simple tests comparing sample and population means, in an attempt to reject our null hypotheses. This provides you with a strong foundation to move ahead with more advanced tests and approaches later on.

About

License:Other


Languages

Language:Jupyter Notebook 100.0%