Hi there,
I am interested in estimating the difference in (mean) between 30 students when they are on campus versus when they are outside (on holidays). T
here is no clear dependent variable. I am only interested in finding out if there are significant differences in mean frequency of drinking reported when students are on campus versus if they are on outside.
My dataset is set up as follows:
Student ID: <====> Drinking Frequecy-Internal <====> Drinking FrequencyExternal
Student01<====>24<====>35
I'm doing the same for a number of other variables, examining the difference in reported behavior while on campus, versus when they are off-campus. E.g, smoking frequency, number of nights spent out, etc.
All variables are on interval or ratio scale. At the end, i hope to produce a table that looks at each of the variables of interest and whether the difference in their means is significant. It will look like this:
Variable: MeanOnCampus MeanOffCampus SigLevel for Difference
Smoking:
Drinking:
LateNight Parties:
etc....
Which tests will be appropriate to test difference in means - Anova, T-tests, or their non-parametric versions?
cheers......CY
---------------------------------
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
|
|
0
|
|
|
|
Reply
|
Yawo1964 (17)
|
5/19/2005 8:58:05 PM |
|
Paired t-tests will do what you want. You're comparing means for TWO
groups of observations (on-campus vs. off-campus)-- hence t-test, not
ANOVA (which is for three or more groups). Also, the two groups of
observations are not independent, as they would be if you were comparing
two sets of students. Instead you are comparing two different aspects
of one group of students -- so an independent samples t-test (aka
UNpaired t-test) wouldn't be appropriate. Check out PROC TTEST.
proc ttest;
paired drinkon*drinkoff ;
Sarah Carroll, PhD
Research Coordinator
DHS - Immunization Branch, MS 7313
2151 Berkeley Way, Room 723E, Berkeley CA 94704
tel: 510.540.2484 fax: 510.883.6015
email: scarroll@dhs.ca.gov
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Chao Yawo
Sent: Thursday, May 19, 2005 1:58 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Testing Difference in Means for 30 cases
Hi there,
I am interested in estimating the difference in (mean) between 30
students when they are on campus versus when they are outside (on
holidays). T
here is no clear dependent variable. I am only interested in finding
out if there are significant differences in mean frequency of drinking
reported when students are on campus versus if they are on outside.
My dataset is set up as follows:
Student ID: <====> Drinking Frequecy-Internal <====> Drinking
FrequencyExternal
Student01<====>24<====>35
I'm doing the same for a number of other variables, examining the
difference in reported behavior while on campus, versus when they are
off-campus. E.g, smoking frequency, number of nights spent out, etc.
All variables are on interval or ratio scale. At the end, i hope to
produce a table that looks at each of the variables of interest and
whether the difference in their means is significant. It will look like
this:
Variable: MeanOnCampus MeanOffCampus SigLevel for
Difference
Smoking:
Drinking:
LateNight Parties:
etc....
Which tests will be appropriate to test difference in means - Anova,
T-tests, or their non-parametric versions?
cheers......CY
---------------------------------
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
|
|
0
|
|
|
|
Reply
|
SCarroll (21)
|
5/19/2005 10:02:41 PM
|
|
Actually, you could use a repeated measures ANOVA which is equivalent to
the paired t test when two observations are used. The ANOVA can be used
for more than two repeated measures as well.
Paul R. Swank, Ph.D.
Professor, Developmental Pediatrics
Medical School
UT Health Science Center at Houston
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Carroll, Sarah (DHS-DCDC-IMM)
Sent: Thursday, May 19, 2005 4:03 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: Testing Difference in Means for 30 cases
Paired t-tests will do what you want. You're comparing means for TWO
groups of observations (on-campus vs. off-campus)-- hence t-test, not
ANOVA (which is for three or more groups). Also, the two groups of
observations are not independent, as they would be if you were comparing
two sets of students. Instead you are comparing two different aspects
of one group of students -- so an independent samples t-test (aka
UNpaired t-test) wouldn't be appropriate. Check out PROC TTEST.
proc ttest;
paired drinkon*drinkoff ;
Sarah Carroll, PhD
Research Coordinator
DHS - Immunization Branch, MS 7313
2151 Berkeley Way, Room 723E, Berkeley CA 94704
tel: 510.540.2484 fax: 510.883.6015
email: scarroll@dhs.ca.gov
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Chao Yawo
Sent: Thursday, May 19, 2005 1:58 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Testing Difference in Means for 30 cases
Hi there,
I am interested in estimating the difference in (mean) between 30
students when they are on campus versus when they are outside (on
holidays). T
here is no clear dependent variable. I am only interested in finding
out if there are significant differences in mean frequency of drinking
reported when students are on campus versus if they are on outside.
My dataset is set up as follows:
Student ID: <====> Drinking Frequecy-Internal <====> Drinking
FrequencyExternal
Student01<====>24<====>35
I'm doing the same for a number of other variables, examining the
difference in reported behavior while on campus, versus when they are
off-campus. E.g, smoking frequency, number of nights spent out, etc.
All variables are on interval or ratio scale. At the end, i hope to
produce a table that looks at each of the variables of interest and
whether the difference in their means is significant. It will look like
this:
Variable: MeanOnCampus MeanOffCampus SigLevel for
Difference
Smoking:
Drinking:
LateNight Parties:
etc....
Which tests will be appropriate to test difference in means - Anova,
T-tests, or their non-parametric versions?
cheers......CY
---------------------------------
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
|
|
0
|
|
|
|
Reply
|
Paul.R.Swank (381)
|
5/19/2005 11:06:59 PM
|
|
thanks for all the responses.
I run both the t-test and the wilcoxon tests. Both found the same effects significant - there was such a close agreement. There were large differences between on and off campus cases though.
Out of 26 pairs of effects, about 20 of them were strongly significant with either test. But given the small number of cases, isn't this surprising ?
cheers, CY
Chao Yawo <yawo1964@yahoo.com> wrote:
Hi there,
I am interested in estimating the difference in (mean) between 30 students when they are on campus versus when they are outside (on holidays). T
here is no clear dependent variable. I am only interested in finding out if there are significant differences in mean frequency of drinking reported when students are on campus versus if they are on outside.
My dataset is set up as follows:
Student ID: <====> Drinking Frequecy-Internal <====> Drinking FrequencyExternal
Student01<====>24<====>35
I'm doing the same for a number of other variables, examining the difference in reported behavior while on campus, versus when they are off-campus. E.g, smoking frequency, number of nights spent out, etc.
All variables are on interval or ratio scale. At the end, i hope to produce a table that looks at each of the variables of interest and whether the difference in their means is significant. It will look like this:
Variable: MeanOnCampus MeanOffCampus SigLevel for Difference
Smoking:
Drinking:
LateNight Parties:
etc....
Which tests will be appropriate to test difference in means - Anova, T-tests, or their non-parametric versions?
cheers......CY
---------------------------------
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|
|
0
|
|
|
|
Reply
|
Yawo1964 (17)
|
5/20/2005 6:09:36 PM
|
|
Not really surprising, to me. Students behave very differently on and
off campus.......well, yeah. What might be more interesting
substantively is trying to find out why the differences in the different
behvaiors are different.....(what a phrase).....e.g. which behaviors
differ most and least between on- and off-campus.
This would require looking at effect sizes, not p-values - but you
shouldn't really be looking at p-values anyway......
It is nice that the Wilcoxon and t give very similar results.
Peter
Peter L. Flom, PhD
Assistant Director, Statistics and Data Analysis Core
Center for Drug Use and HIV Research
National Development and Research Institutes
71 W. 23rd St
www.peterflom.com
New York, NY 10010
(212) 845-4485 (voice)
(917) 438-0894 (fax)
>>> Chao Yawo <yawo1964@YAHOO.COM> 5/20/2005 2:09:36 PM >>>
thanks for all the responses.
I run both the t-test and the wilcoxon tests. Both found the same
effects significant - there was such a close agreement. There were large
differences between on and off campus cases though.
Out of 26 pairs of effects, about 20 of them were strongly significant
with either test. But given the small number of cases, isn't this
surprising ?
cheers, CY
Chao Yawo <yawo1964@yahoo.com> wrote:
Hi there,
I am interested in estimating the difference in (mean) between 30
students when they are on campus versus when they are outside (on
holidays). T
here is no clear dependent variable. I am only interested in finding
out if there are significant differences in mean frequency of drinking
reported when students are on campus versus if they are on outside.
My dataset is set up as follows:
Student ID: <====> Drinking Frequecy-Internal <====> Drinking
FrequencyExternal
Student01<====>24<====>35
I'm doing the same for a number of other variables, examining the
difference in reported behavior while on campus, versus when they are
off-campus. E.g, smoking frequency, number of nights spent out, etc.
All variables are on interval or ratio scale. At the end, i hope to
produce a table that looks at each of the variables of interest and
whether the difference in their means is significant. It will look like
this:
Variable: MeanOnCampus MeanOffCampus SigLevel for
Difference
Smoking:
Drinking:
LateNight Parties:
etc....
Which tests will be appropriate to test difference in means - Anova,
T-tests, or their non-parametric versions?
cheers......CY
---------------------------------
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|
|
0
|
|
|
|
Reply
|
flom (915)
|
5/20/2005 6:20:46 PM
|
|
|
4 Replies
21 Views
(page loaded in 0.082 seconds)
Similiar Articles: FFT scaling for periodic and aperiodic signals - comp.soft-sys ...Hi all I have a question on FFT scaling difference between ... does this mean the normalization is different for ... The three cases are signals that have a power spectrum ... Dos and don'ts in C++ unit testing? - comp.lang.c++.moderated ...There is difference between testing everytime when writing ... > Note that in some cases black box testing is appropriate ... I've yet to find an effect means of testing thread ... Repeated Measure: Difference scores or Covariate? - comp.soft-sys ...... 11/30/2010 9:38:07 PM ... Cohen's Kappa in SPSS 2 raters 6 categories 61 cases ... Measures ANCOVA ..... they are tests for the difference in mean ... Nonparametric, paired test with unequal sample size? - comp.soft ...(I don't know if it makes any difference, but in this case ... On 11/30/2010 5:35 AM, Aino wrote: > does anyone ... signal and I make 100 surrogate signals out of it (mean ... Difference Clouds - comp.graphics.apps.gimpIf you mean to create the effect that photoshops "Difference Clouds" does, there's ... 6/22/2004 4:30:51 AM ... stencil test) combined with alpha testing ... Using TCPIP Services local MX records for mail routing internal vs ...... by implication this might be possible but so far testing ... or a secondary MX for the domain) also made no difference ... SET HOST smtp.mydomain.com 10.2.3.4 =A0) which means ... ZFS RAIDZ versus HARDWARE RAID on SAN - comp.unix.solaris ...Depends what you mean by better. When it comes to performance difference ... I did some testing with 3510 ... But it doesn't mean it's the best tool in all cases. VBOs vs Display Lists - lets test it out! - comp.graphics.api ...Of course, this means that they are (primarily?) aimed ... DL/VBO shouldn't really make a difference in this regard, as ... out: 1600x1200 25fps VBO 36fps DL That's only 30% ... Calculate Settling Time of a Transfer Function - comp.dsp ...Below is just some approximation testing, the above ... Does that mean that this is a pretty standard way of ... com> wrote: >> Doesn't exist except for 2nd order cases. Quick sync between two computers not connected to the internet ...For testing purposes, they need to have the same... ... In most cases, it is easier to solve the problem of sync ... on reboot) Hand setting is possible to about 30 ... Difference of means test - Welcome to Janda's Home PageTwo-sample Difference of Means Test ... model" of hypothesis testing, this observed difference in sample means can be ... SAMPLE SIZES are SMALL (30 cases or ... Hypothesis Testing - CirculationIn many cases, investigators ... variability of this difference between means. If the difference ... Another concept related to hypothesis testing about means ... 7/16/2012 11:43:49 AM
|