SlideShare ist ein Scribd-Unternehmen logo
1 von 12
Hypothesis Testing in R
Codes are in Blue.
For Feedback Mail me: sharmakarishma91@gmail.com
Contents
• One-sample tests
• Two-sample t-Tests
• Paired t-Tests
One-sample t-tests
An outbreak of Salmonella-related illness was attributed to ice
cream produced at a certain factory. Scientists measured the
level of Salmonella in 9 randomly sampled batches of ice
cream.
The levels (in MPN/g) were:
0.593 0.142 0.329 0.691 0.231 0.793 0.519 0.392 0.418
Is there evidence that the mean level of Salmonella in the ice
cream is greater than 0.3 MPN/g?
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
Let mu be the mean level of Salmonella in all batches of ice
cream. Here the hypothesis of interest can be expressed as:
H0: mu= 0.3
Ha: mu> 0.3
Hence, we will need to include the options
alternative="greater", mu=0.3.
x = c(0.593, 0.142, 0.329, 0.691, 0.231, 0.793, 0.519, 0.392,
0.418)
t.test(x, alternative="greater", mu=0.3)
p-value = 0.029. Hence, there is moderately strong evidence that
the mean Salmonella level in the ice cream is above 0.3
MPN/g.
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
• The t.test function prints out a confidence interval as well.
• However this function returns a one-sided interval when the
alternative is "greater" or "less".
• When alternative = "greater" is chosen the lower confidence
bound is calculated and the upper bound is given as Inf by
default.
• When alternative = "less" is chosen the upper confidence
bound is calculated and the lower bound is given as -Inf by
default.
• When alternative = "two.sided" is chosen both the upper and
the lower condence bounds are calculated.
For Feedback Mail me: sharmakarishma91@gmail.com
Two-sample t-tests
Subjects were given a drug (treatment group) and an additional
6 subjects a placebo (control group). Their reaction time to a
stimulus was measured (in ms). We want to perform a two-
sample t-test for comparing the means of the treatment and
control groups.
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
Let mu1 be the mean of the population taking medicine and
mu2 the mean of the untreated population. Here the
hypothesis of interest can be expressed as:
H0: mu1-mu2=0
Ha: mu1-mu2<0
Here we will need to include the data for the treatment group in
x and the data for the control group in y. We will also need to
include the options alternative="less", mu=0.
Finally, we need to decide whether or not the standard
deviations are the same in both groups.
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
Control = c(91, 87, 99, 77, 88, 91)
Treat = c(101, 110, 103, 93, 99, 104)
t.test(Control,Treat,alternative="less", var.equal=TRUE)
#when not assuming equal standard deviation:
t.test(Control,Treat,alternative="less")
For Feedback Mail me: sharmakarishma91@gmail.com
Paired t-tests
There are many experimental settings where each subject in the
study is in both the treatment and control group. For
example, in a matched pairs design, subjects are matched in
pairs and different treatments are given to each subject in the
pair. The outcomes are thereafter compared pair-wise.
Alternatively, one can measure each subject twice, before
and after a treatment. In either of these situations we can’t
use two-sample t-tests since the independence assumption is
not valid. Instead we need to use a paired t-test. This can be
done using the option paired =TRUE.
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
PROBLEM
A study was performed to test whether cars get better mileage
on premium gas than on regular gas. Each of 10 cars was first
filled with either regular or premium gas, decided by a coin
toss, and the mileage for that tank was recorded. The mileage
was recorded again for the same cars using the other kind of
gasoline. We use a paired t-test to determine whether cars
get significantly better mileage with premium gas.
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
reg = c(16, 20, 21, 22, 23, 22, 27, 25, 27, 28)
prem = c(19, 22, 24, 24, 25, 25, 26, 26, 28, 32)
t.test(prem,reg,alternative="greater", paired=TRUE)
The results show that the t-statistic is equal to 4.47 and the p-
value is 0.00075. Since the p-value is very low, we reject the
null hypothesis. There is strong evidence of a mean increase
in gas mileage between regular and premium gasoline.
For Feedback Mail me: sharmakarishma91@gmail.com
THANK YOU.
Reference: http://cran.r-project.org/
For Feedback Mail me: sharmakarishma91@gmail.com

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Merge sort analysis and its real time applications
Merge sort analysis and its real time applicationsMerge sort analysis and its real time applications
Merge sort analysis and its real time applications
 
Null hypothesis for Single Sample Z Test
Null hypothesis for Single Sample Z TestNull hypothesis for Single Sample Z Test
Null hypothesis for Single Sample Z Test
 
Sampling Distributions and Estimators
Sampling Distributions and EstimatorsSampling Distributions and Estimators
Sampling Distributions and Estimators
 
4 2 continuous probability distributionn
4 2 continuous probability    distributionn4 2 continuous probability    distributionn
4 2 continuous probability distributionn
 
1 - Probabilty Introduction .ppt
1 - Probabilty Introduction .ppt1 - Probabilty Introduction .ppt
1 - Probabilty Introduction .ppt
 
Job sequencing with deadlines(with example)
Job sequencing with deadlines(with example)Job sequencing with deadlines(with example)
Job sequencing with deadlines(with example)
 
Practice Test 2 Solutions
Practice Test 2  SolutionsPractice Test 2  Solutions
Practice Test 2 Solutions
 
Probability Distributions for Discrete Variables
Probability Distributions for Discrete VariablesProbability Distributions for Discrete Variables
Probability Distributions for Discrete Variables
 
Matrix chain multiplication
Matrix chain multiplicationMatrix chain multiplication
Matrix chain multiplication
 
Reporting a Kruskal Wallis Test
Reporting a Kruskal Wallis TestReporting a Kruskal Wallis Test
Reporting a Kruskal Wallis Test
 
Probability Distributions for Continuous Variables
Probability Distributions for Continuous VariablesProbability Distributions for Continuous Variables
Probability Distributions for Continuous Variables
 
Rabin karp string matcher
Rabin karp string matcherRabin karp string matcher
Rabin karp string matcher
 
Lex & yacc
Lex & yaccLex & yacc
Lex & yacc
 
Normal Distribution
Normal DistributionNormal Distribution
Normal Distribution
 
stat_03
stat_03stat_03
stat_03
 
Moments in statistics
Moments in statisticsMoments in statistics
Moments in statistics
 
hypothesis test
 hypothesis test hypothesis test
hypothesis test
 
Normal distribution
Normal distributionNormal distribution
Normal distribution
 
Lesson 03 chapter 6 sampling
Lesson 03 chapter 6 samplingLesson 03 chapter 6 sampling
Lesson 03 chapter 6 sampling
 
Continuous probability distribution
Continuous probability distributionContinuous probability distribution
Continuous probability distribution
 

Ähnlich wie Hypothesis testing in R

Lecture 7 Hypothesis Testing Two Sample
Lecture 7 Hypothesis Testing Two SampleLecture 7 Hypothesis Testing Two Sample
Lecture 7 Hypothesis Testing Two Sample
Ahmadullah
 
Chapter 11
Chapter 11Chapter 11
Chapter 11
bmcfad01
 
Estimation efficiency in CRM
Estimation efficiency in CRMEstimation efficiency in CRM
Estimation efficiency in CRM
Tian Tian
 
The following calendar-year information is taken from the December.docx
The following calendar-year information is taken from the December.docxThe following calendar-year information is taken from the December.docx
The following calendar-year information is taken from the December.docx
cherry686017
 
Hypothesis Testing techniques in social research.ppt
Hypothesis Testing techniques in social research.pptHypothesis Testing techniques in social research.ppt
Hypothesis Testing techniques in social research.ppt
Solomonkiplimo
 
1192012 155942 f023_=_statistical_inference
1192012 155942 f023_=_statistical_inference1192012 155942 f023_=_statistical_inference
1192012 155942 f023_=_statistical_inference
Dev Pandey
 
T test, independant sample, paired sample and anova
T test, independant sample, paired sample and anovaT test, independant sample, paired sample and anova
T test, independant sample, paired sample and anova
Qasim Raza
 

Ähnlich wie Hypothesis testing in R (20)

Chapter11
Chapter11Chapter11
Chapter11
 
Lecture 7 Hypothesis Testing Two Sample
Lecture 7 Hypothesis Testing Two SampleLecture 7 Hypothesis Testing Two Sample
Lecture 7 Hypothesis Testing Two Sample
 
Chapter 11
Chapter 11Chapter 11
Chapter 11
 
Chapter11
Chapter11Chapter11
Chapter11
 
Estimation efficiency in CRM
Estimation efficiency in CRMEstimation efficiency in CRM
Estimation efficiency in CRM
 
Hypothesis testing
Hypothesis testingHypothesis testing
Hypothesis testing
 
The following calendar-year information is taken from the December.docx
The following calendar-year information is taken from the December.docxThe following calendar-year information is taken from the December.docx
The following calendar-year information is taken from the December.docx
 
S05 ad4001
S05 ad4001S05 ad4001
S05 ad4001
 
hypothesisTestPPT.pptx
hypothesisTestPPT.pptxhypothesisTestPPT.pptx
hypothesisTestPPT.pptx
 
One way anova
One way anovaOne way anova
One way anova
 
1624.pptx
1624.pptx1624.pptx
1624.pptx
 
Chapter15
Chapter15Chapter15
Chapter15
 
Hypothesis Testing techniques in social research.ppt
Hypothesis Testing techniques in social research.pptHypothesis Testing techniques in social research.ppt
Hypothesis Testing techniques in social research.ppt
 
8. testing of hypothesis for variable &amp; attribute data
8. testing of hypothesis for variable &amp; attribute  data8. testing of hypothesis for variable &amp; attribute  data
8. testing of hypothesis for variable &amp; attribute data
 
t-test and one way ANOVA.ppt game.ppt
t-test and one way ANOVA.ppt game.pptt-test and one way ANOVA.ppt game.ppt
t-test and one way ANOVA.ppt game.ppt
 
Non Parametric Test by Vikramjit Singh
Non Parametric Test by  Vikramjit SinghNon Parametric Test by  Vikramjit Singh
Non Parametric Test by Vikramjit Singh
 
S06
S06S06
S06
 
1192012 155942 f023_=_statistical_inference
1192012 155942 f023_=_statistical_inference1192012 155942 f023_=_statistical_inference
1192012 155942 f023_=_statistical_inference
 
T test, independant sample, paired sample and anova
T test, independant sample, paired sample and anovaT test, independant sample, paired sample and anova
T test, independant sample, paired sample and anova
 
Cb36469472
Cb36469472Cb36469472
Cb36469472
 

Kürzlich hochgeladen

Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Anamikakaur10
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Sheetaleventcompany
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
dlhescort
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
lizamodels9
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
dollysharma2066
 

Kürzlich hochgeladen (20)

Call Girls Zirakpur👧 Book Now📱7837612180 📞👉Call Girl Service In Zirakpur No A...
Call Girls Zirakpur👧 Book Now📱7837612180 📞👉Call Girl Service In Zirakpur No A...Call Girls Zirakpur👧 Book Now📱7837612180 📞👉Call Girl Service In Zirakpur No A...
Call Girls Zirakpur👧 Book Now📱7837612180 📞👉Call Girl Service In Zirakpur No A...
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service 📞8868886958📞 Just📲 Call Nihal Chandigarh Call Girl...
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort ServiceEluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
Eluru Call Girls Service ☎ ️93326-06886 ❤️‍🔥 Enjoy 24/7 Escort Service
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentation
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Greater Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Falcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in indiaFalcon Invoice Discounting platform in india
Falcon Invoice Discounting platform in india
 

Hypothesis testing in R

  • 1. Hypothesis Testing in R Codes are in Blue. For Feedback Mail me: sharmakarishma91@gmail.com
  • 2. Contents • One-sample tests • Two-sample t-Tests • Paired t-Tests
  • 3. One-sample t-tests An outbreak of Salmonella-related illness was attributed to ice cream produced at a certain factory. Scientists measured the level of Salmonella in 9 randomly sampled batches of ice cream. The levels (in MPN/g) were: 0.593 0.142 0.329 0.691 0.231 0.793 0.519 0.392 0.418 Is there evidence that the mean level of Salmonella in the ice cream is greater than 0.3 MPN/g? For Feedback Mail me: sharmakarishma91@gmail.com
  • 4. Contd.. Let mu be the mean level of Salmonella in all batches of ice cream. Here the hypothesis of interest can be expressed as: H0: mu= 0.3 Ha: mu> 0.3 Hence, we will need to include the options alternative="greater", mu=0.3. x = c(0.593, 0.142, 0.329, 0.691, 0.231, 0.793, 0.519, 0.392, 0.418) t.test(x, alternative="greater", mu=0.3) p-value = 0.029. Hence, there is moderately strong evidence that the mean Salmonella level in the ice cream is above 0.3 MPN/g. For Feedback Mail me: sharmakarishma91@gmail.com
  • 5. Contd.. • The t.test function prints out a confidence interval as well. • However this function returns a one-sided interval when the alternative is "greater" or "less". • When alternative = "greater" is chosen the lower confidence bound is calculated and the upper bound is given as Inf by default. • When alternative = "less" is chosen the upper confidence bound is calculated and the lower bound is given as -Inf by default. • When alternative = "two.sided" is chosen both the upper and the lower condence bounds are calculated. For Feedback Mail me: sharmakarishma91@gmail.com
  • 6. Two-sample t-tests Subjects were given a drug (treatment group) and an additional 6 subjects a placebo (control group). Their reaction time to a stimulus was measured (in ms). We want to perform a two- sample t-test for comparing the means of the treatment and control groups. For Feedback Mail me: sharmakarishma91@gmail.com
  • 7. Contd.. Let mu1 be the mean of the population taking medicine and mu2 the mean of the untreated population. Here the hypothesis of interest can be expressed as: H0: mu1-mu2=0 Ha: mu1-mu2<0 Here we will need to include the data for the treatment group in x and the data for the control group in y. We will also need to include the options alternative="less", mu=0. Finally, we need to decide whether or not the standard deviations are the same in both groups. For Feedback Mail me: sharmakarishma91@gmail.com
  • 8. Contd.. Control = c(91, 87, 99, 77, 88, 91) Treat = c(101, 110, 103, 93, 99, 104) t.test(Control,Treat,alternative="less", var.equal=TRUE) #when not assuming equal standard deviation: t.test(Control,Treat,alternative="less") For Feedback Mail me: sharmakarishma91@gmail.com
  • 9. Paired t-tests There are many experimental settings where each subject in the study is in both the treatment and control group. For example, in a matched pairs design, subjects are matched in pairs and different treatments are given to each subject in the pair. The outcomes are thereafter compared pair-wise. Alternatively, one can measure each subject twice, before and after a treatment. In either of these situations we can’t use two-sample t-tests since the independence assumption is not valid. Instead we need to use a paired t-test. This can be done using the option paired =TRUE. For Feedback Mail me: sharmakarishma91@gmail.com
  • 10. Contd.. PROBLEM A study was performed to test whether cars get better mileage on premium gas than on regular gas. Each of 10 cars was first filled with either regular or premium gas, decided by a coin toss, and the mileage for that tank was recorded. The mileage was recorded again for the same cars using the other kind of gasoline. We use a paired t-test to determine whether cars get significantly better mileage with premium gas. For Feedback Mail me: sharmakarishma91@gmail.com
  • 11. Contd.. reg = c(16, 20, 21, 22, 23, 22, 27, 25, 27, 28) prem = c(19, 22, 24, 24, 25, 25, 26, 26, 28, 32) t.test(prem,reg,alternative="greater", paired=TRUE) The results show that the t-statistic is equal to 4.47 and the p- value is 0.00075. Since the p-value is very low, we reject the null hypothesis. There is strong evidence of a mean increase in gas mileage between regular and premium gasoline. For Feedback Mail me: sharmakarishma91@gmail.com
  • 12. THANK YOU. Reference: http://cran.r-project.org/ For Feedback Mail me: sharmakarishma91@gmail.com