SlideShare a Scribd company logo
Z-SCORE
INTRODUCTION
A Z-score is a numerical measurement that
describes a value's relationship to the mean of a
group of values.
Z-score is measured in terms of standard deviations
from the mean.
If a Z-score is 0, it indicates that the data point's
score is identical to the mean score.
How
to
calculate
the
z-score?  A Z-score tells where the generic normal
distribution curve is present.
 Most Z-scores are between -3 and +3
(because 99.7% of the data is between -3
and +3).
FORMULA
OF
Z-SCORE
 For Two - Sample Where,
x
̄ 1 = Mean of the First Sample
x
̄ 2 = Mean of the Second Sample
μ1 = Mean of the First
Population
μ2 = Mean of the Second
Population
(μ1 – μ2) = Hypothesized
Difference Between the
Population Means
σ1 = Standard Deviation of the
First Population
σ2 = Standard Deviation of the
Second Population
 For Standard Error of the Mean
Where,
“x” = Raw Score,
“µ” = Population Mean,
“σ” = Standard Deviation
“n” = Number of Observations
 For One - Sample
z =
x - µ
σ
Where,
“x” =Raw Score,
“µ”=Population Mean,
“σ”=Standard Deviation
Formula
of
Z-Score
How
to
interpret
a
z-score?
How
to
interpret
a
Z-Score?
HOW
TO
CALCULATE
THE
P-
VALUE
FROM
Z-TABLE?
Z = 2.00
Z = 1.06
Z = 0.48
Z = 2.94
How
to
calculate
P-Value
from
Z-Score?
How
to
interpret
Z
–
Score
in
Python?
How
to
interpret
Z-Score
in
Python?
Z score = 0.35406698564593303
RUN
import statistics
Sample_Mean = 1100
Population_Mean = 1026
Stdev = 209
Z=(Sample_Mean-Population_Mean)/Stdev
print("Z score =",Z)
How
to
interpret
Z
–
Score
in
Python?
How
to
interpret
Z-Score
in
Python?
Data : [1, 8, 9, 7, 6, 5, 4, 3, 7, 8]
Mean: 5.8
Standard Deviation : 2.5298221281347035
Zscore : [-2. 0.91666667 1.33333333 0.5 0.08333333
-0.33333333
-0.75 -1.16666667 0.5 0.91666667]
RUN
import statistics
import scipy.stats as stats
A = [1,8,9,7,6,5,4,3,7,8]
print ("Data :",A)
mean = statistics.mean(A)
print ("nMean:", mean)
stdev = statistics.stdev(A)
print ("nStandard Deviation :",stdev)
zscore = stats.zscore(A)
print ("nZscore :", zscore)
How
to
interpret
Z-Score
in
R
Studio?
a <- c(9, 10, 12, 14, 5, 8, 9)
mean(a)
sd(a)
a.z_score <- (a - mean(a)) / sd(a)
plot(a.z_score, type="o", col="green")
> a <- c(9, 10, 12, 14, 5, 8, 9)
> mean(a)
[1] 9.571429
> sd(a)
[1] 2.878492
> a.z_score <- (a - mean(a)) / sd(a)
> plot(a.z_score, type="o", col="green")
RUN
Why
is
z-score
important?
It is useful to standardize the values (raw scores) of a normal distribution by
converting them into z-scores because:
Importance
Example
1
 Suppose SAT scores among college students are normally distributed
with a mean of 500 and a standard deviation of 100.If a student scores
a 700,what would be her z-score?
Z-score = Where,
x = 700, µ = 500, σ = 100
=2
 Her z-score would be 2 which means her score is two standard
deviations above the mean.
700 - 500
100
Example
1
Example
2
 A set of Math test scores has a mean of 70 and a standard deviation of 8.
And a set of English test scores has a mean of 74 and a standard deviation of 16.
For which test would a score of 78 have a higher standing?
Find the z-score for each test:
z-score of Math Test= =1
z-score of English Test= =0.25
 The Math score would have the highest standing since it is 1
standard deviation above the mean while the English score is
only 0.25 standard deviation above the mean.
78-70
8
78 - 74
16
Example
2
Example
3
 A company wanted to compare the performance of its call center employees in two
different centers located in two different parts of the country – Hyderabad, and
Bengaluru, in terms of the number of tickets resolved in a day (hypothetically
speaking). The company randomly selected 30 employees from the call center in
Hyderabad and 30 employees from the call center in Bengaluru. Calculate the P-Value.
Hyderabad: x
̄ 1 = 750, σ1 = 20
Bengaluru: x
̄ 2 = 780, σ2 = 25
First, we will formulate the null and alternate hypotheses and set the level of significance for the test.
H0: There is no difference between the performance of employees at different call centers.
H1: There is a difference in the performance of the employees.
The level of significance is set as 0.05.
Next, the mean and standard deviation for each sample will need to be determined.
Hyderabad: x
̄ 1 = 750, σ1 = 20
Bengaluru: x
̄ 2 = 780, σ2 = 25
Next, we will calculate the hypothesized difference between the two population means.
In this case, the company is hypothesizing that the mean performance in Hyderabad is the same as that of
Bengaluru. So, (μ1 – μ2 ) = 0
Finally, we will use the formula for two-sample z-test for means to calculate the test statistic.
z= (x
̄ 1 – x
̄ 2 ) / √((σ1 )²/n1 + (σ2)²/n2)
z = (-30) / √((20)²/30 + (25)²/30))
z = -5.13
 At a significance level of 0.05, the p-value is less than 0.00001. As the p-value is lot less than the critical
value of 0.05, the result is statistically significant and hence you can reject the null hypothesis. Hence,
the performance of Hyderabad’s team is considered to be not equal to the performance of Bengaluru’s
team.
Example
3
 In general, the mean height of women is 65″ with a standard deviation of
3.5″. What is the probability of finding a random sample of 50 women with
a mean height of 70″, assuming the heights are normally distributed?
z = (x – μ) / (σ / √n)
= (70 – 65) / (3.5/√50) = 5 / 0.495 = 10.1
 The key here is that we’re dealing with a sampling distribution of
means, so we know we have to include the standard error in the
formula. We also know that 99% of values fall within 3 standard
deviations from the mean in a normal probability distribution
(see 68 95 99.7 rule). Therefore, there’s less than 1% probability
that any sample of women will have a mean height of 70″.
Z-SCORE.pptx

More Related Content

What's hot

Psychometria rzetelność testów psychologicznych
Psychometria   rzetelność testów psychologicznychPsychometria   rzetelność testów psychologicznych
Psychometria rzetelność testów psychologicznychKarol Wolski
 
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...Karol Wolski
 
Zscores
ZscoresZscores
Measures of central tendency
Measures of central tendencyMeasures of central tendency
Measures of central tendency
Mmedsc Hahm
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
Global Polis
 
Z scores lecture chapter 2 and 4
Z scores lecture chapter 2 and 4Z scores lecture chapter 2 and 4
Z scores lecture chapter 2 and 4Karen Price
 
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwo
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwoPodstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwo
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwoKarol Wolski
 
Z scores
Z scoresZ scores
Inferential Statistics
Inferential StatisticsInferential Statistics
Inferential Statistics
Kush Kulshrestha
 
Normal Probabilty Distribution and its Problems
Normal Probabilty Distribution and its ProblemsNormal Probabilty Distribution and its Problems
Normal Probabilty Distribution and its Problems
Ali Raza
 
Descriptive statistics
Descriptive statisticsDescriptive statistics
Descriptive statistics
Regent University
 
Frequency Distributions
Frequency DistributionsFrequency Distributions
Frequency Distributions
jasondroesch
 
Measures of Spread
Measures of SpreadMeasures of Spread
Measures of Spread
Danica Joy Aquino
 
Descriptive statistics and graphs
Descriptive statistics and graphsDescriptive statistics and graphs
Descriptive statistics and graphs
Avjinder (Avi) Kaler
 
Understanding the Z- score (Application on evaluating a Learner`s performance)
Understanding the Z- score (Application on evaluating a Learner`s performance)Understanding the Z- score (Application on evaluating a Learner`s performance)
Understanding the Z- score (Application on evaluating a Learner`s performance)
Lawrence Avillano
 
Probability
ProbabilityProbability
Probability
jasondroesch
 
Commonly Used Statistics in Medical Research Part I
Commonly Used Statistics in Medical Research Part ICommonly Used Statistics in Medical Research Part I
Commonly Used Statistics in Medical Research Part I
Pat Barlow
 
Standard Scores
Standard ScoresStandard Scores
Standard Scores
Mirasol Madrid
 
Inferential statistics
Inferential statisticsInferential statistics
Inferential statistics
Ashok Kulkarni
 
Correlation Computations Thiyagu
Correlation Computations ThiyaguCorrelation Computations Thiyagu
Correlation Computations Thiyagu
Thiyagu K
 

What's hot (20)

Psychometria rzetelność testów psychologicznych
Psychometria   rzetelność testów psychologicznychPsychometria   rzetelność testów psychologicznych
Psychometria rzetelność testów psychologicznych
 
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...
Podstawy statystyki dla psychologów - zajęcia 3 - miary tendencji centralnej ...
 
Zscores
ZscoresZscores
Zscores
 
Measures of central tendency
Measures of central tendencyMeasures of central tendency
Measures of central tendency
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
Z scores lecture chapter 2 and 4
Z scores lecture chapter 2 and 4Z scores lecture chapter 2 and 4
Z scores lecture chapter 2 and 4
 
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwo
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwoPodstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwo
Podstawy statystyki dla psychologów - zajęcia 9 - prawdopodobieństwo
 
Z scores
Z scoresZ scores
Z scores
 
Inferential Statistics
Inferential StatisticsInferential Statistics
Inferential Statistics
 
Normal Probabilty Distribution and its Problems
Normal Probabilty Distribution and its ProblemsNormal Probabilty Distribution and its Problems
Normal Probabilty Distribution and its Problems
 
Descriptive statistics
Descriptive statisticsDescriptive statistics
Descriptive statistics
 
Frequency Distributions
Frequency DistributionsFrequency Distributions
Frequency Distributions
 
Measures of Spread
Measures of SpreadMeasures of Spread
Measures of Spread
 
Descriptive statistics and graphs
Descriptive statistics and graphsDescriptive statistics and graphs
Descriptive statistics and graphs
 
Understanding the Z- score (Application on evaluating a Learner`s performance)
Understanding the Z- score (Application on evaluating a Learner`s performance)Understanding the Z- score (Application on evaluating a Learner`s performance)
Understanding the Z- score (Application on evaluating a Learner`s performance)
 
Probability
ProbabilityProbability
Probability
 
Commonly Used Statistics in Medical Research Part I
Commonly Used Statistics in Medical Research Part ICommonly Used Statistics in Medical Research Part I
Commonly Used Statistics in Medical Research Part I
 
Standard Scores
Standard ScoresStandard Scores
Standard Scores
 
Inferential statistics
Inferential statisticsInferential statistics
Inferential statistics
 
Correlation Computations Thiyagu
Correlation Computations ThiyaguCorrelation Computations Thiyagu
Correlation Computations Thiyagu
 

Similar to Z-SCORE.pptx

zScores_HANDOUT.pdf
zScores_HANDOUT.pdfzScores_HANDOUT.pdf
zScores_HANDOUT.pdf
Joebest8
 
The standard normal curve & its application in biomedical sciences
The standard normal curve & its application in biomedical sciencesThe standard normal curve & its application in biomedical sciences
The standard normal curve & its application in biomedical sciencesAbhi Manu
 
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
BishoyRomani
 
Topic 1 part 2
Topic 1 part 2Topic 1 part 2
Topic 1 part 2
Ryan Herzog
 
Normal distribution
Normal distributionNormal distribution
Normal distribution
manzara arshad
 
Statistics for interpreting test scores
Statistics for interpreting test scoresStatistics for interpreting test scores
Statistics for interpreting test scores
mpazhou
 
Derived Scores
Derived ScoresDerived Scores
Derived Scores
Dr. Sarita Anand
 
Kolmogorov smirnov test
Kolmogorov smirnov testKolmogorov smirnov test
Kolmogorov smirnov test
Ramesh Giri
 
Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or VarianceEstimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance
Long Beach City College
 
Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance
Long Beach City College
 
Practice test1 solution
Practice test1 solutionPractice test1 solution
Practice test1 solution
Long Beach City College
 
Statistical inference: Probability and Distribution
Statistical inference: Probability and DistributionStatistical inference: Probability and Distribution
Statistical inference: Probability and Distribution
Eugene Yan Ziyou
 
Medical statistics2
Medical statistics2Medical statistics2
Medical statistics2
Amany El-seoud
 
Introduction to statistical concepts
Introduction to statistical conceptsIntroduction to statistical concepts
Introduction to statistical concepts
Aya Christeen
 

Similar to Z-SCORE.pptx (20)

zScores_HANDOUT.pdf
zScores_HANDOUT.pdfzScores_HANDOUT.pdf
zScores_HANDOUT.pdf
 
Z score
Z scoreZ score
Z score
 
The standard normal curve & its application in biomedical sciences
The standard normal curve & its application in biomedical sciencesThe standard normal curve & its application in biomedical sciences
The standard normal curve & its application in biomedical sciences
 
Chapters 2 4
Chapters 2  4Chapters 2  4
Chapters 2 4
 
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
02 PSBE3_PPT.Ch01_2_Examining Distribution.ppt
 
Topic 1 part 2
Topic 1 part 2Topic 1 part 2
Topic 1 part 2
 
Normal distribution
Normal distributionNormal distribution
Normal distribution
 
Statistics for interpreting test scores
Statistics for interpreting test scoresStatistics for interpreting test scores
Statistics for interpreting test scores
 
Derived Scores
Derived ScoresDerived Scores
Derived Scores
 
Chapters 2 & 4
Chapters 2 & 4Chapters 2 & 4
Chapters 2 & 4
 
Chapters 2 & 4
Chapters 2 & 4Chapters 2 & 4
Chapters 2 & 4
 
Kolmogorov smirnov test
Kolmogorov smirnov testKolmogorov smirnov test
Kolmogorov smirnov test
 
Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or VarianceEstimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance
 
Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance Estimating a Population Standard Deviation or Variance
Estimating a Population Standard Deviation or Variance
 
Normal Distribution
Normal DistributionNormal Distribution
Normal Distribution
 
Practice test1 solution
Practice test1 solutionPractice test1 solution
Practice test1 solution
 
Psy295 chap05 (1)
Psy295 chap05 (1)Psy295 chap05 (1)
Psy295 chap05 (1)
 
Statistical inference: Probability and Distribution
Statistical inference: Probability and DistributionStatistical inference: Probability and Distribution
Statistical inference: Probability and Distribution
 
Medical statistics2
Medical statistics2Medical statistics2
Medical statistics2
 
Introduction to statistical concepts
Introduction to statistical conceptsIntroduction to statistical concepts
Introduction to statistical concepts
 

More from CHIRANTANMONDAL2

eukaryotik dna elongation.pptx
eukaryotik dna elongation.pptxeukaryotik dna elongation.pptx
eukaryotik dna elongation.pptx
CHIRANTANMONDAL2
 
DNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptxDNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptx
CHIRANTANMONDAL2
 
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptxDNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
CHIRANTANMONDAL2
 
DNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptxDNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptx
CHIRANTANMONDAL2
 
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptxDNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
CHIRANTANMONDAL2
 
DNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptxDNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptx
CHIRANTANMONDAL2
 
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptxTOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
CHIRANTANMONDAL2
 
PROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptxPROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptx
CHIRANTANMONDAL2
 
Lac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptxLac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptx
CHIRANTANMONDAL2
 
DNA POLYMERASE.pptx
DNA POLYMERASE.pptxDNA POLYMERASE.pptx
DNA POLYMERASE.pptx
CHIRANTANMONDAL2
 
DNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptxDNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptx
CHIRANTANMONDAL2
 
PROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptxPROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptx
CHIRANTANMONDAL2
 
PROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptxPROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptx
CHIRANTANMONDAL2
 
Prokaryotic DNA replication.pptx
Prokaryotic DNA replication.pptxProkaryotic DNA replication.pptx
Prokaryotic DNA replication.pptx
CHIRANTANMONDAL2
 
DNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptxDNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptx
CHIRANTANMONDAL2
 
TOPIC NAME Structure of DNA and their Type.pptx
TOPIC NAME  Structure of DNA and their Type.pptxTOPIC NAME  Structure of DNA and their Type.pptx
TOPIC NAME Structure of DNA and their Type.pptx
CHIRANTANMONDAL2
 
LAC OPERON SYSTEM.pptx
LAC  OPERON  SYSTEM.pptxLAC  OPERON  SYSTEM.pptx
LAC OPERON SYSTEM.pptx
CHIRANTANMONDAL2
 
LAC OPERON 2.pptx
LAC  OPERON 2.pptxLAC  OPERON 2.pptx
LAC OPERON 2.pptx
CHIRANTANMONDAL2
 
DNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptxDNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptx
CHIRANTANMONDAL2
 
TOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptxTOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptx
CHIRANTANMONDAL2
 

More from CHIRANTANMONDAL2 (20)

eukaryotik dna elongation.pptx
eukaryotik dna elongation.pptxeukaryotik dna elongation.pptx
eukaryotik dna elongation.pptx
 
DNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptxDNA IS GENETIC METERIAL.pptx
DNA IS GENETIC METERIAL.pptx
 
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptxDNA IS GENETIC MATERIAL(Experimental Proof).pptx
DNA IS GENETIC MATERIAL(Experimental Proof).pptx
 
DNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptxDNA Repair Mechanism And Their Types .pptx
DNA Repair Mechanism And Their Types .pptx
 
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptxDNA REPAIR MECHANISM AND THEIR TYPES.pptx
DNA REPAIR MECHANISM AND THEIR TYPES.pptx
 
DNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptxDNA STRUCTURE AND TYPES .pptx
DNA STRUCTURE AND TYPES .pptx
 
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptxTOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
TOPIC- DIFFERENT TYPES OF RNA, THEIR SYNTHESIS AND STRUCTURE.pptx
 
PROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptxPROKARYOTS DNA REPLICATION.pptx
PROKARYOTS DNA REPLICATION.pptx
 
Lac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptxLac Operon System(Catabolite Repression).pptx
Lac Operon System(Catabolite Repression).pptx
 
DNA POLYMERASE.pptx
DNA POLYMERASE.pptxDNA POLYMERASE.pptx
DNA POLYMERASE.pptx
 
DNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptxDNA POLYMERASE AND RNA POLYMERASE.pptx
DNA POLYMERASE AND RNA POLYMERASE.pptx
 
PROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptxPROKARYOTES DNA RPLICATION.pptx
PROKARYOTES DNA RPLICATION.pptx
 
PROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptxPROKARYOTIC DNA REPLICATION .pptx
PROKARYOTIC DNA REPLICATION .pptx
 
Prokaryotic DNA replication.pptx
Prokaryotic DNA replication.pptxProkaryotic DNA replication.pptx
Prokaryotic DNA replication.pptx
 
DNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptxDNA repair mechanism and their types.pptx
DNA repair mechanism and their types.pptx
 
TOPIC NAME Structure of DNA and their Type.pptx
TOPIC NAME  Structure of DNA and their Type.pptxTOPIC NAME  Structure of DNA and their Type.pptx
TOPIC NAME Structure of DNA and their Type.pptx
 
LAC OPERON SYSTEM.pptx
LAC  OPERON  SYSTEM.pptxLAC  OPERON  SYSTEM.pptx
LAC OPERON SYSTEM.pptx
 
LAC OPERON 2.pptx
LAC  OPERON 2.pptxLAC  OPERON 2.pptx
LAC OPERON 2.pptx
 
DNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptxDNA STRUCTURE AND TYPES.pptx
DNA STRUCTURE AND TYPES.pptx
 
TOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptxTOPIC-DNA repair mechanism and their types.pptx
TOPIC-DNA repair mechanism and their types.pptx
 

Recently uploaded

BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 

Recently uploaded (20)

BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 

Z-SCORE.pptx

  • 2. INTRODUCTION A Z-score is a numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean. If a Z-score is 0, it indicates that the data point's score is identical to the mean score.
  • 3. How to calculate the z-score?  A Z-score tells where the generic normal distribution curve is present.  Most Z-scores are between -3 and +3 (because 99.7% of the data is between -3 and +3).
  • 4. FORMULA OF Z-SCORE  For Two - Sample Where, x ̄ 1 = Mean of the First Sample x ̄ 2 = Mean of the Second Sample μ1 = Mean of the First Population μ2 = Mean of the Second Population (μ1 – μ2) = Hypothesized Difference Between the Population Means σ1 = Standard Deviation of the First Population σ2 = Standard Deviation of the Second Population  For Standard Error of the Mean Where, “x” = Raw Score, “µ” = Population Mean, “σ” = Standard Deviation “n” = Number of Observations  For One - Sample z = x - µ σ Where, “x” =Raw Score, “µ”=Population Mean, “σ”=Standard Deviation Formula of Z-Score
  • 6. HOW TO CALCULATE THE P- VALUE FROM Z-TABLE? Z = 2.00 Z = 1.06 Z = 0.48 Z = 2.94 How to calculate P-Value from Z-Score?
  • 7. How to interpret Z – Score in Python? How to interpret Z-Score in Python? Z score = 0.35406698564593303 RUN import statistics Sample_Mean = 1100 Population_Mean = 1026 Stdev = 209 Z=(Sample_Mean-Population_Mean)/Stdev print("Z score =",Z)
  • 8. How to interpret Z – Score in Python? How to interpret Z-Score in Python? Data : [1, 8, 9, 7, 6, 5, 4, 3, 7, 8] Mean: 5.8 Standard Deviation : 2.5298221281347035 Zscore : [-2. 0.91666667 1.33333333 0.5 0.08333333 -0.33333333 -0.75 -1.16666667 0.5 0.91666667] RUN import statistics import scipy.stats as stats A = [1,8,9,7,6,5,4,3,7,8] print ("Data :",A) mean = statistics.mean(A) print ("nMean:", mean) stdev = statistics.stdev(A) print ("nStandard Deviation :",stdev) zscore = stats.zscore(A) print ("nZscore :", zscore)
  • 9. How to interpret Z-Score in R Studio? a <- c(9, 10, 12, 14, 5, 8, 9) mean(a) sd(a) a.z_score <- (a - mean(a)) / sd(a) plot(a.z_score, type="o", col="green") > a <- c(9, 10, 12, 14, 5, 8, 9) > mean(a) [1] 9.571429 > sd(a) [1] 2.878492 > a.z_score <- (a - mean(a)) / sd(a) > plot(a.z_score, type="o", col="green") RUN
  • 10. Why is z-score important? It is useful to standardize the values (raw scores) of a normal distribution by converting them into z-scores because: Importance
  • 11. Example 1  Suppose SAT scores among college students are normally distributed with a mean of 500 and a standard deviation of 100.If a student scores a 700,what would be her z-score? Z-score = Where, x = 700, µ = 500, σ = 100 =2  Her z-score would be 2 which means her score is two standard deviations above the mean. 700 - 500 100 Example 1
  • 12. Example 2  A set of Math test scores has a mean of 70 and a standard deviation of 8. And a set of English test scores has a mean of 74 and a standard deviation of 16. For which test would a score of 78 have a higher standing? Find the z-score for each test: z-score of Math Test= =1 z-score of English Test= =0.25  The Math score would have the highest standing since it is 1 standard deviation above the mean while the English score is only 0.25 standard deviation above the mean. 78-70 8 78 - 74 16 Example 2
  • 13. Example 3  A company wanted to compare the performance of its call center employees in two different centers located in two different parts of the country – Hyderabad, and Bengaluru, in terms of the number of tickets resolved in a day (hypothetically speaking). The company randomly selected 30 employees from the call center in Hyderabad and 30 employees from the call center in Bengaluru. Calculate the P-Value. Hyderabad: x ̄ 1 = 750, σ1 = 20 Bengaluru: x ̄ 2 = 780, σ2 = 25 First, we will formulate the null and alternate hypotheses and set the level of significance for the test. H0: There is no difference between the performance of employees at different call centers. H1: There is a difference in the performance of the employees. The level of significance is set as 0.05. Next, the mean and standard deviation for each sample will need to be determined. Hyderabad: x ̄ 1 = 750, σ1 = 20 Bengaluru: x ̄ 2 = 780, σ2 = 25 Next, we will calculate the hypothesized difference between the two population means. In this case, the company is hypothesizing that the mean performance in Hyderabad is the same as that of Bengaluru. So, (μ1 – μ2 ) = 0 Finally, we will use the formula for two-sample z-test for means to calculate the test statistic. z= (x ̄ 1 – x ̄ 2 ) / √((σ1 )²/n1 + (σ2)²/n2) z = (-30) / √((20)²/30 + (25)²/30)) z = -5.13  At a significance level of 0.05, the p-value is less than 0.00001. As the p-value is lot less than the critical value of 0.05, the result is statistically significant and hence you can reject the null hypothesis. Hence, the performance of Hyderabad’s team is considered to be not equal to the performance of Bengaluru’s team.
  • 14. Example 3  In general, the mean height of women is 65″ with a standard deviation of 3.5″. What is the probability of finding a random sample of 50 women with a mean height of 70″, assuming the heights are normally distributed? z = (x – μ) / (σ / √n) = (70 – 65) / (3.5/√50) = 5 / 0.495 = 10.1  The key here is that we’re dealing with a sampling distribution of means, so we know we have to include the standard error in the formula. We also know that 99% of values fall within 3 standard deviations from the mean in a normal probability distribution (see 68 95 99.7 rule). Therefore, there’s less than 1% probability that any sample of women will have a mean height of 70″.