Experiments and Observational Studies. Characteristics of a Study

Size: px
Start display at page:

Download "Experiments and Observational Studies. Characteristics of a Study"

Transcription

1 Experiments and Observational Studies Characteristics of a Study

2 Thought Questions 1. In studies to determine the relationship between two conditions (activities, traits, etc.), one of them is often defined as the explanatory (independent) variable and the other as the outcome or response (dependent) variable. In an experiment to determine whether the drug Memox improves cognition of patients with moderate to severe Alzheimer s disease, whether or not the patient received Memox is one variable, and cognitive score is the other. Which is the explanatory variable (EV) and which is the response variable (RV)? A. Memox is RV, Cognitive Score is EV B. Memox is EV, Cognitive Score is RV

3 Thought Questions 2. When experimenters want to compare two treatments, such as an old and a new drug, they use randomization to assign the participants to the two conditions. If you had 50 people participate in such a study, how would you go about randomizing them? Why shouldn t the experimenter decide which people should get which treatment?

4 Randomized, Comparative Experiments An experiment is a study design that allows us to show a cause-andeffect relationship. In an experiment, the experimenter must identify at least one explanatory variable, called a factor (Example: Drug), to manipulate and at least one response variable to measure. An experiment: Manipulates factor levels to create treatments (Example: Drug A, Drug B, Dummy Drug (Placebo)) Randomly assigns subjects to these treatment levels. Compares the responses of the subject groups across treatment levels. A treatment maybe the combination of more than one factor (Example: Drug/Chemo for cancer patients)

5 Randomized, Comparative Experiments In general, the individuals on whom or which we experiment are called experimental units. When humans are involved, they are commonly called subjects or participants.

6 Example of a Randomized Experiment Does Aspirin Prevent Heart Attacks? Physicians Health Study (1988) 5-year randomized experiment 22,071 male physicians (40 to 84 years old). Group 1: took ordinary aspirin tablet every other day. Group 2: took placebo (looked like aspirin but no active ingredients).

7 The Four Principles of Experimental Design 1. Control (of certain variables and the environment) We control sources of variation other than the factors we are testing by making conditions as similar as possible for all treatment groups. Making Generalizations from the experiment to other levels of the controlled factor can be risky. Example: Suppose we test two laundry detergents and carefully control the water temperature at 180 degrees Fahrenheit. This would reduce the variation in our results due to water temperature, but what would that say about the detergents performance in cold water?

8 The Four Principles of Experimental Design 2. Randomize: Randomization allows us to equalize the effects of unknown or uncontrollable sources of variation. It does not eliminate the effects of these sources, but it spreads them out across the treatment levels so that we can see past them. Without randomization, you do not have a valid experiment and will not be able to use the powerful methods of Statistics to draw conclusions from your study.

9 The Four Principles of Experimental Design Randomization Example: Quitting Smoking with Nicotine Patches Nicotine and control "look-alike" patches were randomly assigned to participants. Baseline values were compared for the two groups on numerous characteristics. For example, the mean age of those receiving the nicotine patches was 42.8, while it was 43.6 for those with the control patches. Because they examined comparability on 28 characteristics, a few showed substantial differences in the two groups, as would be expected just by chance. For instance, 85% of those receiving the nicotine patches were employed, while only 73.3% of those receiving the control patches were employed.

10 The Four Principles of Experimental Design 3. Replicate: Repeat the experiment, applying the treatments to a number of subjects. The outcome of an experiment on a single subject is an anecdote, not data.

11 The Four Principles of Experimental Design 4. Block: Sometimes, attributes of the experimental units that we are not studying and that we can t control may nevertheless affect the outcomes of an experiment. If we group similar individuals together and then randomize within each of these blocks, we can remove much of the variability due to the difference among the blocks. Example: Allocating two six player teams from a pool of 12 children. If there were two 12 year olds and ten 6-years. Randomization might be a problem.

12 The Four Principles of Experimental Design Example of Blocking Blood pressure study comparing either active treatment to a placebo. You are randomly assigning the drug to mild/moderate hypertensive. The study is 8 weeks in duration. In this class of people the baseline diastolics will be between You will see efficacy (change from baseline) for an active agent (drug) of the order of 0-40, while for a placebo you may see values from 0-20.

13 The Four Principles of Experimental Design Example of Blocking One critical baseline factor- newly diagnosed patients vs previously diagnosed patients. Newly diagnosed patients, will have a strong response regardless of whether they are in the active or placebo group. Why?

14 Diagrams of Experiments It s often helpful to diagram the procedure of an experiment. The following diagram emphasizes the random allocation of subjects to treatment groups, the separate treatments applied to these groups, and the ultimate comparison of results: Slide 13-14

15 SAS Programing A SAS program is a sequence of steps that the user submits for execution. Raw Data SAS Data Set DATA steps are typically used to create SAS data sets. DATA Step SAS Data Set PROC Step Report PROC steps are typically used to process SAS data sets (that is, generate reports and graphs, manage data, and sort data). 15

16 SAS Programs data work.newsalesemps; length First_Name $ 12 Last_Name $ 18 Job_Title $ 25; infile 'newemps.csv' dlm=','; input First_Name $ Last_Name $ Job_Title $ Salary; run; DATA Step proc print data=work.newsalesemps; run; proc means data=work.newsalesemps; class Job_Title; var Salary; run; PROC Step PROC Step 16 p102d01

17 SAS Windowing Environment In the SAS windowing environment, windows are used to edit and execute programming statements, display the log, output, and Help facility, and more. 17

18 Three Primary Windows In the SAS windowing environment, you submit and view the results of a SAS program using three primary windows. contains the SAS program to submit. contains information about the processing of the SAS program, including any warning and error messages. contains reports generated by the SAS program. 18

19 Editor Windows Enhanced Editor Program Editor Only available in the Windows operating environment Default editor for Windows operating environment Multiple instances of the editor can be open at one time Code does not disappear after it is submitted Incorporates color-coding as you type Available in all operating environments Default editor for all operating environments except Windows Only one instance of the editor can be open at one time Code disappears after it is submitted Incorporates color-coding after you press ENTER 19

20 Editor Windows Enhanced Editor Program Editor 20

21 Log Window Partial SAS Log 33 data work.newsalesemps; 34 length First_Name $ 12 Last_Name $ Job_Title $ 25; 36 infile 'newemps.csv' dlm=','; 37 input First_Name $ Last_Name $ 38 Job_Title $ Salary; 39 run; NOTE: The infile 'newemps.csv' is: File Name=S:\Workshop\newemps.csv, RECFM=V,LRECL=256 NOTE: 71 records were read from the infile 'newemps.csv'. The minimum record length was 28. The maximum record length was 47. NOTE: The data set WORK.NEWSALESEMPS has 71 observations and 4 variables proc print data=work.newsalesemps; 42 run; NOTE: There were 71 observations read from the data set WORK.NEWSALESEMPS. 21

22 Output Window Partial PROC PRINT Output Obs First_Name Last_Name Job_Title Salary 1 Satyakam Denny Sales Rep. II Monica Kletschkus Sales Rep. IV Kevin Lyon Sales Rep. I Petrea Soltau Sales Rep. II Marina Iyengar Sales Rep. III Shani Duckett Sales Rep. I Fang Wilson Sales Rep. II Michael Minas Sales Rep. I Amanda Liebman Sales Rep. II Vincent Eastley Sales Rep. III Viney Barbis Sales Rep. III Skev Rusli Sales Rep. II Narelle James Sales Rep. III Gerry Snellings Sales Rep. I Leonid Karavdic Sales Rep. II 27860

23 Output Window PROC MEANS Output The MEANS Procedure Analysis Variable : Salary N Job_Title Obs N Mean Std Dev Minimum Maximum ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ Sales Rep. I Sales Rep. II Sales Rep. III Sales Rep. IV Temp. Sales Rep ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ 23

24 SAS Code Random Allocation of Subjects to Treatments DATA RANDOM; DO SUBJ = 1 TO 20; GROUP=RANUNI(0); OUTPUT; END; RUN; proc print;run;

25 SAS Output Random Allocation of Subjects to Treatments

26 SAS Random Allocation of Subjects to Treatments PROC RANK DATA=RANDOM GROUPS=2 OUT=SPLIT; RUN; VAR GROUP; PROC FORMAT; RUN; VALUE GRPFMT 0='CONTROL' 1='TREATMENT'; PROC PRINT DATA=SPLIT NOOBS; TITLE "Subject Group Assignments"; VAR SUBJ GROUP; FORMAT GROUP GRPFMT.; RUN;

27 SAS Output Random Allocation of Subjects to Treatments

28 Does the Difference Make a Difference? How large do the differences need to be to say that there is a difference in the treatments? Differences that are larger than we d get just from chance alone are called statistically significant. We ll talk more about statistical significance later on. For now, the important point is that a difference is statistically significant if we don t believe that it s likely to have occurred only by chance.

29 Control Treatments - Placebo Often, we want to compare a situation involving a specific treatment to the status quo situation. Often simply applying any treatment can induce an improvement. To separate out the effects of the treatment of interest, we can use a control treatment that mimics the treatment itself. A fake treatment that looks just like the treatment being tested is called a placebo. Placebos are the best way to blind subjects from knowing whether they are receiving the treatment or not.

30 Blinding There are two main classes of individuals who can affect the outcome of the experiment: those who could influence the results (subjects, treatment administrators, technicians) those who evaluate the results (judges, treating physicians, etc.) When all individuals in either one of these classes are blinded, an experiment is said to be single-blind. When everyone in both classes is blinded, the experiment is called double-blind.

31 The Best Experiments are usually: randomized. comparative. double-blind. placebo-controlled.

32 Eletriptan for the Acute Treatment of Migraine in Adolescents: Results of a Double-Blind, Placebo- Controlled Trial Background. Eletriptan is a potent agonist with proven efficacy in the acute treatment of migraine in adults. Objective. To evaluate the efficacy and tolerability of eletriptan 40 mg versus placebo in adolescent patients (aged 12-17).

33 Eletriptan for the Acute Treatment of Migraine in Adolescents: Results of a Double-Blind, Placebo- Controlled Trial Methods. A multicenter, double-blind, placebocontrolled trial was conducted comparing 40 mg of oral eletriptan with placebo for the treatment of migraine in adolescent patients. The primary efficacy endpoint was 2-hour headache response, and a number of secondary endpoints were also evaluated.

34 Eletriptan for the Acute Treatment of Migraine in Adolescents: Results of a Double-Blind, Placebo- Controlled Trial Results. Of 274 patients who treated a migraine attack, 267 were evaluated for efficacy (n = 138 eletriptan; n=129 placebo) at 2 hours post-dose. There was no significant difference in 2-hour headache response for eletriptan 40 mg versus placebo (57% vs 57%), and no significant improvements were observed for any of the outcomes at 1 or 2 hours post-dose.

35 Designing a Good Observational Study In an observational study, researchers don t assign choices; they simply observe them. Manipulation occurs naturally, not imposed. Can t assume the explanatory variable is the only one responsible for any observed differences in the response variable. Case-Control Studies attempt to include an appropriate control group.

36 Designing a Good Observational Study Retrospective or Prospective Studies Prospective: participants followed into future, and events recorded. Retrospective: participants are asked to recall past events. Which is better and why?

37 Using the Past as a Source of Data The problem: In some observational studies participants are required to remember the past. Partial solution: Use official records if they exist, rather than relying on memory. If possible, use prospective study. Example: Pearson, Ross and Dawes (1992, pgs ) reported on a study in which chronic headache sufferers were asked to keep a diary of the intensity of their pain for a week. At the end of the week, they were asked to rate their current level of pain, then to recall the maximum and minimum pain they had felt during the week. Those who were currently suffering from a high level of pain overestimated their prior levels of pain, while those with current low levels underestimated their prior pain.

38 Example: Baldness and Heart Attacks Observational study: compared 665 men admitted to hospital with 1 st heart attack to 772 men (same age group) admitted to same hospitals for other reasons. Percent with pattern baldness higher for heart attack group (42%) compared to no heart attack (34%). Included adjustments for age and other heart attack risk factors. Can you think of any differences in the two groups that might causes baldness?

39 Difficulties in Observational Studies Extending the Results Inappropriately The problem: Because many observational studies use convenience or volunteer samples, it may not be valid to extend the results to other groups. Example : Baldness and Heart Attack Observational study only used men who were hospitalized. Should consider whether results should be extended to all men.

40 Difficulties in Observational Studies Confounding Variables A confounding variable is related to the explanatory variable, and affects the response variable. The effect of a confounding variable on the response variable cannot be separated from the effect of the explanatory variable on the response variable.

41 Difficulties and Disasters in Observational Studies Study of the relationship between smoking during pregnancy and child s subsequent IQ a few years after birth. Explanatory variable: whether or not the mother smoked during pregnancy Response variable: subsequent IQ of the child Women who smoke also have poor nutrition, lower levels of education, or lower income. Possible Confounding Variables: Mother s nutrition, education, and income. The effect of these variables (confounding effect) on the child s IQ cannot be separated from the effects of smoking. They are likely to differ for smokers and non smokers and are likely to also affect the child s IQ.

42 Temporal Patterns of Cocaine Use in Pregnancy Seventy-five cocaine-using women enrolled in a comprehensive perinatal care program were divided into two groups: those who used cocaine in only the first trimester of pregnancy (group 1 [N = 23]) and those who used cocaine throughout pregnancy (group 2 [N = 52]). Perinatal outcomes of these pregnancies were compared with perinatal outcomes of a matched group of obstetric patients with no history or evidence of substance abuse (group 3 [N = 40]).

43 Temporal Patterns of Cocaine Use in Pregnancy Can we conclude that cocaine use causes reduction in mean birth weight?

44 Go easy on the coffee, you could start seeing things Daily Mail, January 14 th, 2009 Drinking cup after cup of coffee dramatically increases the risk of hallucinating, research shows. Healthy young men and women who had more than seven cups of instant coffee a day were three times more likely to hear or see things that were not there than those who limited their intake to less than a cup. Confirming the link could lead to new treatments for those who suffer severe hallucinations, including schizophrenics, some victims of child abuse and the recently bereaved.

45 Go easy on the coffee, you could start seeing things Daily Mail, January 14 th, 2009 The Durham University researchers asked 219 students to document their caffeine intake, working on the principle that a cup of instant coffee contains 45mg of caffeine. The volunteers were also asked how often they suffered hallucinations. The high caffeine users were three times as likely to have had problems as those who rarely drank coffee. Large amounts of caffeine also made people more likely to think they could sense the presence of ghosts, the journal Personality and Individual Differences reports.

46 Study: The effect of caffeine and stress on auditory hallucinations in a non-clinical sample Abstract Both the diathesis-stress model and the continuum theory of schizophrenia attempt to explain the mechanism by which stress may facilitate the expression of the symptoms of schizophrenia in non-clinical samples. Caffeine has also recently been reported to increase proneness to hallucinate. In this study, 92 non-clinical participants were assigned to either a high or a low stress condition and a high or allow caffeine condition on the basis of self-report.

47 Study: The effect of caffeine and stress on auditory hallucinations in a non-clinical sample After they had been primed, the participants were asked to listen to white noise and to report each time they hear the song White Christmas during the white noise. The song was never played. The results indicated that the interaction of stress and caffeine had a significant effect on the reported frequency of hearing White Christmas. The results demonstrated that high caffeine levels in association with high levels of stressful life events interacted to produce higher levels of hallucination in non-clinical participants,

48 Study: The effect of caffeine and stress on auditory hallucinations in a non-clinical sample Ninety-two, non-clinical volunteer individuals (35 males and 57 females) participated in the study. The two predictor variables, caffeine and stress were measured using self-report questionnaires The self-reported level of stress during the past year was measured using the perceived stress questionnaire (PSQ) which has been previously demonstrated to have high test retest reliability. Hallucination proneness was also measured using a selfreport scale.

49 Study: The effect of caffeine and stress on auditory hallucinations in a non-clinical sample

50 Study: The effect of caffeine and stress on auditory hallucinations in a non-clinical sample

51 Study: Erroneous analyses of interactions in neuroscience: a problem of significance In theory, a comparison of two experimental effects requires a statistical test on their difference. In practice, this comparison is often based on an incorrect procedure involving two separate tests in which researchers conclude that effects differ when one effect is significant (P < 0.05) but the other is not (P > 0.05).

52 Study: Erroneous analyses of interactions in neuroscience: a problem of significance We reviewed 513 behavioral, systems and cognitive neuroscience articles in five top-ranking journals (Science, Nature, Nature Neuroscience, Neuron and The Journal of Neuroscience) and found that 78 used the correct procedure and 79 used the incorrect procedure. An additional analysis suggests that incorrect analyses of interactions are even more common in cellular and molecular neuroscience.

Chapter 13. Experiments and Observational Studies. Copyright 2012, 2008, 2005 Pearson Education, Inc.

Chapter 13. Experiments and Observational Studies. Copyright 2012, 2008, 2005 Pearson Education, Inc. Chapter 13 Experiments and Observational Studies Copyright 2012, 2008, 2005 Pearson Education, Inc. Observational Studies In an observational study, researchers don t assign choices; they simply observe

More information

Chapter 13 Summary Experiments and Observational Studies

Chapter 13 Summary Experiments and Observational Studies Chapter 13 Summary Experiments and Observational Studies What have we learned? We can recognize sample surveys, observational studies, and randomized comparative experiments. o These methods collect data

More information

Chapter 11: Experiments and Observational Studies p 318

Chapter 11: Experiments and Observational Studies p 318 Chapter 11: Experiments and Observational Studies p 318 Observation vs Experiment An observational study observes individuals and measures variables of interest but does not attempt to influence the response.

More information

Chapter 13. Experiments and Observational Studies

Chapter 13. Experiments and Observational Studies Chapter 13 Experiments and Observational Studies 1 /36 Homework Read Chpt 13 Do p312 1, 7, 9, 11, 17, 20, 25, 27, 29, 33, 40, 41 2 /36 Observational Studies In an observational study, researchers do not

More information

Gathering. Useful Data. Chapter 3. Copyright 2004 Brooks/Cole, a division of Thomson Learning, Inc.

Gathering. Useful Data. Chapter 3. Copyright 2004 Brooks/Cole, a division of Thomson Learning, Inc. Gathering Chapter 3 Useful Data Copyright 2004 Brooks/Cole, a division of Thomson Learning, Inc. Principal Idea: The knowledge of how the data were generated is one of the key ingredients for translating

More information

Collecting Data Example: Does aspirin prevent heart attacks?

Collecting Data Example: Does aspirin prevent heart attacks? Collecting Data In an experiment, the researcher controls or manipulates the environment of the individuals. The intent of most experiments is to study the effect of changes in the explanatory variable

More information

Lecture 4. Experiments and Observational Studies

Lecture 4. Experiments and Observational Studies Lecture 4 Experiments and Observational Studies Thought Question 1: In a study to relate two conditions, researchers often define one as the explanatory variable and other as the outcome or response variable.

More information

(Total 2 marks) Name three conditions which are controlled inside our bodies (3)

(Total 2 marks) Name three conditions which are controlled inside our bodies (3) Q1. Name two drugs which may harm the human body. 1.... 2.... (Total 2 marks) Q2. (a) We control many conditions inside our bodies. Name three conditions which are controlled inside our bodies. 1.... 2....

More information

Vocabulary. Bias. Blinding. Block. Cluster sample

Vocabulary. Bias. Blinding. Block. Cluster sample Bias Blinding Block Census Cluster sample Confounding Control group Convenience sample Designs Experiment Experimental units Factor Level Any systematic failure of a sampling method to represent its population

More information

Chapter 6. Experiments in the Real World. Chapter 6 1

Chapter 6. Experiments in the Real World. Chapter 6 1 Chapter 6 Experiments in the Real World Chapter 6 1 Thought Question 1 Suppose you are interested in determining if drinking a glass of red wine each day helps prevent heartburn. You recruit 40 adults

More information

MAT Mathematics in Today's World

MAT Mathematics in Today's World MAT 1000 Mathematics in Today's World Last Time 1. What does a sample tell us about the population? 2. Practical problems in sample surveys. Last Time Parameter: Number that describes a population Statistic:

More information

Chapter 1 - Sampling and Experimental Design

Chapter 1 - Sampling and Experimental Design Chapter 1 - Sampling and Experimental Design Read sections 1.3-1.5 Sampling (1.3.3 and 1.4.2) Sampling Plans: methods of selecting individuals from a population. We are interested in sampling plans such

More information

Chapter 4 Review. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question.

Chapter 4 Review. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question. Name: Class: Date: Chapter 4 Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Use Scenario 4-1. The newspaper asks you to comment on their survey

More information

Villarreal Rm. 170 Handout (4.3)/(4.4) - 1 Designing Experiments I

Villarreal Rm. 170 Handout (4.3)/(4.4) - 1 Designing Experiments I Statistics and Probability B Ch. 4 Sample Surveys and Experiments Villarreal Rm. 170 Handout (4.3)/(4.4) - 1 Designing Experiments I Suppose we wanted to investigate if caffeine truly affects ones pulse

More information

Module 4 Introduction

Module 4 Introduction Module 4 Introduction Recall the Big Picture: We begin a statistical investigation with a research question. The investigation proceeds with the following steps: Produce Data: Determine what to measure,

More information

Biology Core B1. Drugs revision 09/06/ minutes. 43 marks. Page 1 of 17

Biology Core B1. Drugs revision 09/06/ minutes. 43 marks. Page 1 of 17 Biology Core B Drugs revision 09/06/4 43 minutes 43 marks Page of 7 Q. Cannabis is an illegal drug. (a) What type of illness might be caused by smoking cannabis regularly? () (b) The graph shows the use

More information

REVIEW FOR THE PREVIOUS LECTURE

REVIEW FOR THE PREVIOUS LECTURE Slide 2-1 Calculator: The same calculator policies as for the ACT hold for STT 315: http://www.actstudent.org/faq/answers/calculator.html. It is highly recommended that you have a TI-84, as this is the

More information

Psychology 205, Revelle, Fall 2014 Research Methods in Psychology Mid-Term. Name:

Psychology 205, Revelle, Fall 2014 Research Methods in Psychology Mid-Term. Name: Name: 1. (2 points) What is the primary advantage of using the median instead of the mean as a measure of central tendency? It is less affected by outliers. 2. (2 points) Why is counterbalancing important

More information

Sections 10.7 and 10.9

Sections 10.7 and 10.9 Sections 10.7 and 10.9 Timothy Hanson Department of Statistics, University of South Carolina Stat 205: Elementary Statistics for the Biological and Life Sciences 1 / 24 10.7 confidence interval for p 1

More information

STAT 111 SEC 006 PRACTICE EXAM 1: SPRING 2007

STAT 111 SEC 006 PRACTICE EXAM 1: SPRING 2007 STAT 111 SEC 006 PRACTICE EXAM 1: SPRING 2007 1. You want to know the opinions of American schoolteachers about establishing a national test for high school graduation. You obtain a list of the members

More information

Bias. A systematic error (caused by the investigator or the subjects) that causes an incorrect (overor under-) estimate of an association.

Bias. A systematic error (caused by the investigator or the subjects) that causes an incorrect (overor under-) estimate of an association. Bias A systematic error (caused by the investigator or the subjects) that causes an incorrect (overor under-) estimate of an association. Here, random error is small, but systematic errors have led to

More information

Q1. The graph shows the risk of addiction and risk of harm to the body for some drugs.

Q1. The graph shows the risk of addiction and risk of harm to the body for some drugs. Q. The graph shows the risk of addiction and risk of harm to the body for some drugs. (a) (i) Name two legal recreational drugs shown in the graph. () The overall impact of legal drugs on health is much

More information

Creative Commons Attribution-NonCommercial-Share Alike License

Creative Commons Attribution-NonCommercial-Share Alike License Author: Brenda Gunderson, Ph.D., 2015 License: Unless otherwise noted, this material is made available under the terms of the Creative Commons Attribution- NonCommercial-Share Alike 3.0 Unported License:

More information

Next, we ll discuss some terminology that is typically used when discussing randomized experiments.

Next, we ll discuss some terminology that is typically used when discussing randomized experiments. DESIGNING RANDOMIZED COMPARATIVE EXPERIMENTS Recall that in an experimental study design, a researcher manipulates something and then measures the effect of that manipulation on some outcome of interest.

More information

Unit notebook May 29, 2015

Unit notebook May 29, 2015 S.IC.3 S.IC.6 Objective: Students will recognize the purposes of and differences among sample surveys, experiments, and observational studies; explain how randomization relates to each and evaluate reports

More information

Statistics Success Stories and Cautionary Tales

Statistics Success Stories and Cautionary Tales Course Goals STATISTICS 8 Professor Jessica Utts http://www.ics.uci.edu/~jutts/8 Help you understand and appreciate how statistics affects your daily life. Teach you tools for understanding statistics

More information

Psychology Research Process

Psychology Research Process Psychology Research Process Logical Processes Induction Observation/Association/Using Correlation Trying to assess, through observation of a large group/sample, what is associated with what? Examples:

More information

AS 3.12, Externally assessed, 4 credits Experiments and Observational Studies

AS 3.12, Externally assessed, 4 credits Experiments and Observational Studies AS 3.12, Externally assessed, 4 credits Experiments and Observational Studies Do drugs have an adverse effect on teenage brains? Does listening to music help students study? What information would you

More information

Review. Chapter 5. Common Language. Ch 3: samples. Ch 4: real world sample surveys. Experiments, Good and Bad

Review. Chapter 5. Common Language. Ch 3: samples. Ch 4: real world sample surveys. Experiments, Good and Bad Review Ch 3: samples Sampling terminology Proportions Margin of error Ch 4: real world sample surveys Questions to ask about a study Errors in sample surveys Concerns about survey questions Probability

More information

Delirium. Script. So what are the signs and symptoms you are likely to see in this syndrome?

Delirium. Script. So what are the signs and symptoms you are likely to see in this syndrome? Delirium Script Note: Script may vary slightly from the audio. Slide 2 Index Definition About delirium Signs and symptoms of delirium Why delirium occurs Risk Factors and causes of delirium Conditions

More information

Lecture 2B: Chapter 3, Section 4 Designing Studies (Focus on Experiments)

Lecture 2B: Chapter 3, Section 4 Designing Studies (Focus on Experiments) ooking Back: Review ecture 2B: Chapter 3, Section 4 Designing Studies (Focus on Experiments)! Definitions! Randomization! Control! Blind Experiment! Pitfalls! 2 Types of Study Design " Observational study:

More information

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful.

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. icausalbayes USER MANUAL INTRODUCTION You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. We expect most of our users

More information

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date:

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date: II. DESIGN OF STUDIES Observational studies and experiments are two types of studies that aim to describe or explain the variation of responses under the hypothesized factors, without or with manipulation.

More information

Chapter 13: Experiments

Chapter 13: Experiments Chapter 13: Experiments The objective of sampling is to describe a population. In the process of collecting the sample, sample units are not to be modified or affected by the researcher. In contrast, experimental

More information

More Designs. Section 4.2B

More Designs. Section 4.2B More Designs Section 4.2B Block A group of experimental units or subjects that are known before the experiment to be similar in some way that is expected to systematically affect the response to the treatments.

More information

STATISTICS 201. Survey: Provide this Info. How familiar are you with these? Survey, continued IMPORTANT NOTE. Regression and ANOVA 9/29/2013

STATISTICS 201. Survey: Provide this Info. How familiar are you with these? Survey, continued IMPORTANT NOTE. Regression and ANOVA 9/29/2013 STATISTICS 201 Survey: Provide this Info Outline for today: Go over syllabus Provide requested information on survey (handed out in class) Brief introduction and hands-on activity Name Major/Program Year

More information

AP Statistics Exam Review: Strand 2: Sampling and Experimentation Date:

AP Statistics Exam Review: Strand 2: Sampling and Experimentation Date: AP Statistics NAME: Exam Review: Strand 2: Sampling and Experimentation Date: Block: II. Sampling and Experimentation: Planning and conducting a study (10%-15%) Data must be collected according to a well-developed

More information

20. Experiments. November 7,

20. Experiments. November 7, 20. Experiments November 7, 2015 1 Experiments are motivated by our desire to know causation combined with the fact that we typically only have correlations. The cause of a correlation may be the two variables

More information

Designed Experiments have developed their own terminology. The individuals in an experiment are often called subjects.

Designed Experiments have developed their own terminology. The individuals in an experiment are often called subjects. When we wish to show a causal relationship between our explanatory variable and the response variable, a well designed experiment provides the best option. Here, we will discuss a few basic concepts and

More information

A) I only B) II only C) III only D) II and III only E) I, II, and III

A) I only B) II only C) III only D) II and III only E) I, II, and III AP Statistics Review Chapters 13, 3, 4 Your Name: Per: MULTIPLE CHOICE. Write the letter corresponding to the best answer. 1.* The Physicians Health Study, a large medical experiment involving 22,000 male

More information

Experiments. 22S:30/105 Statistical Methods and Computing. Recall: What is the critical difference between an experiment and an observational

Experiments. 22S:30/105 Statistical Methods and Computing. Recall: What is the critical difference between an experiment and an observational 22S:30/105 Statistical Methods and Computing Designing Experiments Lecture 8 February 13, 2015 Kate Cowles 374 SH, 335-0727 kate-cowles@uiowa.edu 1 2 Experiments Recall: What is the critical difference

More information

Ch. 1 Collecting and Displaying Data

Ch. 1 Collecting and Displaying Data Ch. 1 Collecting and Displaying Data In the first two sections of this chapter you will learn about sampling techniques and the different levels of measurement for a variable. It is important that you

More information

The NALC Health Benefit Plan HBR Report

The NALC Health Benefit Plan HBR Report The NALC Health Benefit Plan HBR Report Vol. 16-2 Fredric V. Rolando, President Brian Hellman, Director February 2016 20547 Waverly Court Ashburn, VA 20149-703.729.4677. American Heart Health Month Board

More information

AP Psychology -- Chapter 02 Review Research Methods in Psychology

AP Psychology -- Chapter 02 Review Research Methods in Psychology AP Psychology -- Chapter 02 Review Research Methods in Psychology 1. In the opening vignette, to what was Alicia's condition linked? The death of her parents and only brother 2. What did Pennebaker s study

More information

Psychology Research Process

Psychology Research Process Psychology Research Process Logical Processes Induction Observation/Association/Using Correlation Trying to assess, through observation of a large group/sample, what is associated with what? Examples:

More information

SMS USA PHASE ONE SMS USA BULLETIN BOARD FOCUS GROUP: MODERATOR S GUIDE

SMS USA PHASE ONE SMS USA BULLETIN BOARD FOCUS GROUP: MODERATOR S GUIDE SMS USA PHASE ONE SMS USA BULLETIN BOARD FOCUS GROUP: MODERATOR S GUIDE DAY 1: GENERAL SMOKING QUESTIONS Welcome to our online discussion! My name is Lisa and I will be moderating the session over the

More information

The Practice of Statistics 1 Week 2: Relationships and Data Collection

The Practice of Statistics 1 Week 2: Relationships and Data Collection The Practice of Statistics 1 Week 2: Relationships and Data Collection Video 12: Data Collection - Experiments Experiments are the gold standard since they allow us to make causal conclusions. example,

More information

Alcohol, Tobacco and Other Drugs Unit Lesson One Indirect Sticky Sort

Alcohol, Tobacco and Other Drugs Unit Lesson One Indirect Sticky Sort Topic ATOD Vocabulary Duration 1-52 minute class period Purpose To activate prior knowledge of vocabulary used when discussing alcohol, tobacco and other drugs. Materials Large sheet of paper or poster

More information

Outline. Practice. Confounding Variables. Discuss. Observational Studies vs Experiments. Observational Studies vs Experiments

Outline. Practice. Confounding Variables. Discuss. Observational Studies vs Experiments. Observational Studies vs Experiments 1 2 Outline Finish sampling slides from Tuesday. Study design what do you do with the subjects/units once you select them? (OI Sections 1.4-1.5) Observational studies vs. experiments Descriptive statistics

More information

CHAPTER 8 EXPERIMENTAL DESIGN

CHAPTER 8 EXPERIMENTAL DESIGN CHAPTER 8 1 EXPERIMENTAL DESIGN LEARNING OBJECTIVES 2 Define confounding variable, and describe how confounding variables are related to internal validity Describe the posttest-only design and the pretestposttest

More information

Human intuition is remarkably accurate and free from error.

Human intuition is remarkably accurate and free from error. Human intuition is remarkably accurate and free from error. 3 Most people seem to lack confidence in the accuracy of their beliefs. 4 Case studies are particularly useful because of the similarities we

More information

Let s Quit Together.

Let s Quit Together. Let s Quit Together. Are you ready to quit smoking? Whether it s your first time quitting, or you ve been trying for years, CVS/pharmacy and MinuteClinic are here to help with information, tools, guidance

More information

General Biostatistics Concepts

General Biostatistics Concepts General Biostatistics Concepts Dongmei Li Department of Public Health Sciences Office of Public Health Studies University of Hawai i at Mānoa Outline 1. What is Biostatistics? 2. Types of Measurements

More information

Welcome back to our program!

Welcome back to our program! Welcome back to our program! 1 As you likely recall, the SBIRT TIPS training program is a federally funded project that aims to both educate practitioner students and impact health systems. 2 Let s start

More information

3. Factors such as race, age, sex, and a person s physiological state are all considered determinants of disease. a. True

3. Factors such as race, age, sex, and a person s physiological state are all considered determinants of disease. a. True / False 1. Epidemiology is the basic science of public health. LEARNING OBJECTIVES: CNIA.BOYL.17.2.1 - Define epidemiology. 2. Within the field of epidemiology, the term distribution refers to the relationship

More information

Bias. Sam Bracebridge

Bias. Sam Bracebridge Bias Sam Bracebridge Bias Errors in epidemiological measurements Based on the slides of Sam Bracebridge By the end of the lecture fellows will be able to Define bias Identify different types of bias Explain

More information

EPIDEMIOLOGY-BIOSTATISTICS EXAM Midterm 2004 PRINT YOUR LEGAL NAME:

EPIDEMIOLOGY-BIOSTATISTICS EXAM Midterm 2004 PRINT YOUR LEGAL NAME: EPIDEMIOLOGY-BIOSTATISTICS EXAM Midterm 2004 PRINT YOUR LEGAL NAME: Instructions: This exam is 20% of your course grade. The maximum number of points for the course is 1,000; hence, this exam is worth

More information

Chapter 11 Nonexperimental Quantitative Research Steps in Nonexperimental Research

Chapter 11 Nonexperimental Quantitative Research Steps in Nonexperimental Research Chapter 11 Nonexperimental Quantitative Research (Reminder: Don t forget to utilize the concept maps and study questions as you study this and the other chapters.) Nonexperimental research is needed because

More information

Lecture 15 Chapters 12&13 Relationships between Two Categorical Variables

Lecture 15 Chapters 12&13 Relationships between Two Categorical Variables Lecture 15 Chapters 12&13 Relationships between wo Categorical ariables abulating and Summarizing able of Expected Counts Statistical Significance for wo-way ables Constructing & Assessing a wo-way able

More information

Lecture 4: Chapter 3, Section 4 Designing Studies (Focus on Experiments)

Lecture 4: Chapter 3, Section 4 Designing Studies (Focus on Experiments) ecture 4: Chapter 3, Section 4 Designing Studies (Focus on Experiments) Definitions Randomization Control Blind Experiment Pitfalls Specific Experimental Designs Cengage earning Elementary Statistics:

More information

PSY 205 Module 3 Supplement. Comparing Correlation, Ex post facto, and Experimental Approaches to Research

PSY 205 Module 3 Supplement. Comparing Correlation, Ex post facto, and Experimental Approaches to Research PSY 205 Module 3 Supplement Comparing Correlation, Ex post facto, and Experimental Approaches to Research As you have seen in this module, there are many ways to do research in psychology. Now let s carefully

More information

Essential Question: How do we incorporate good experimental design in investigations? Experiments

Essential Question: How do we incorporate good experimental design in investigations? Experiments Essential Question: How do we incorporate good experimental design in investigations? Experiments Objectives Distinguish between good and poor experimental design. Identify independent, dependent, and

More information

You can t fix by analysis what you bungled by design. Fancy analysis can t fix a poorly designed study.

You can t fix by analysis what you bungled by design. Fancy analysis can t fix a poorly designed study. You can t fix by analysis what you bungled by design. Light, Singer and Willett Or, not as catchy but perhaps more accurate: Fancy analysis can t fix a poorly designed study. Producing Data The Role of

More information

Lecture 4: Chapter 3, Section 4. (Focus on Experiments) Designing Studies. Looking Back: Review. Definitions

Lecture 4: Chapter 3, Section 4. (Focus on Experiments) Designing Studies. Looking Back: Review. Definitions ecture 4: Chapter 3, Section 4 Designing Studies (Focus on Experiments)!Definitions!Randomization!Control!Blind Experiment!Pitfalls!Specific Experimental Designs Cengage earning Elementary Statistics:

More information

GLOSSARY OF GENERAL TERMS

GLOSSARY OF GENERAL TERMS GLOSSARY OF GENERAL TERMS Absolute risk reduction Absolute risk reduction (ARR) is the difference between the event rate in the control group (CER) and the event rate in the treated group (EER). ARR =

More information

Unit 3 Lesson 2 Investigation 4

Unit 3 Lesson 2 Investigation 4 Name: Investigation 4 ssociation and Causation Reports in the media often suggest that research has found a cause-and-effect relationship between two variables. For example, a newspaper article listed

More information

Two-sample Categorical data: Measuring association

Two-sample Categorical data: Measuring association Two-sample Categorical data: Measuring association Patrick Breheny October 27 Patrick Breheny University of Iowa Biostatistical Methods I (BIOS 5710) 1 / 40 Introduction Study designs leading to contingency

More information

2016 Children and young people s inpatient and day case survey

2016 Children and young people s inpatient and day case survey NHS Patient Survey Programme 2016 Children and young people s inpatient and day case survey Technical details for analysing trust-level results Published November 2017 CQC publication Contents 1. Introduction...

More information

7. Bivariate Graphing

7. Bivariate Graphing 1 7. Bivariate Graphing Video Link: https://www.youtube.com/watch?v=shzvkwwyguk&index=7&list=pl2fqhgedk7yyl1w9tgio8w pyftdumgc_j Section 7.1: Converting a Quantitative Explanatory Variable to Categorical

More information

Thought question 1. Thought question 2

Thought question 1. Thought question 2 Thought question 1 Advice columnists sometimes ask readers to write and express their feelings about certain topics. Ann Landers asked whether they thought engineers make good husbands. Do you think the

More information

Name Class Date. Even when random sampling is used for a survey, the survey s results can have errors. Some of the sources of errors are:

Name Class Date. Even when random sampling is used for a survey, the survey s results can have errors. Some of the sources of errors are: Name Class Date 8-3 Surveys, Experiments, and Observational Studies Going Deeper Essential question: What kinds of statistical research are there, and which ones can establish cause-and-effect relationships

More information

Exam 2 PS 306, Spring 2004

Exam 2 PS 306, Spring 2004 Exam 2 PS 306, Spring 2004 1. Briefly define the term confound. Then, using a very explicit example of practice effects (maybe even with numbers?), illustrate why conducting a repeated measures experiment

More information

CHAPTER 1 SAMPLING AND DATA

CHAPTER 1 SAMPLING AND DATA CHAPTER 1 SAMPLING AND DATA 1 In the first chapter we are introduced to several very important statistical terms and concepts. Warning: Notice that in the previous sentence, there is no mention of formulas

More information

STAB22 Statistics I. Lecture 12

STAB22 Statistics I. Lecture 12 STAB22 Statistics I Lecture 12 1 Midterm Grades Frequency 0 20 40 60 0 10 20 30 40 Marks ( / 40 ) Min Q1 Median Q3 Max Marks / 40 17.5 65 80 90 100 Marks / 100 7 26 32 36 40 2 Example (Sample Survey) The

More information

Lesson 11 Correlations

Lesson 11 Correlations Lesson 11 Correlations Lesson Objectives All students will define key terms and explain the difference between correlations and experiments. All students should be able to analyse scattergrams using knowledge

More information

Probability and Statistics Chapter 1 Notes

Probability and Statistics Chapter 1 Notes Probability and Statistics Chapter 1 Notes I Section 1-1 A is the science of collecting, organizing, analyzing, and interpreting data in order to make decisions 1 is information coming from observations,

More information

Why do Psychologists Perform Research?

Why do Psychologists Perform Research? PSY 102 1 PSY 102 Understanding and Thinking Critically About Psychological Research Thinking critically about research means knowing the right questions to ask to assess the validity or accuracy of a

More information

H2O to Go! Hydration. It s easier than you think to get dehydrated. No water, no go...

H2O to Go! Hydration. It s easier than you think to get dehydrated. No water, no go... H2O to Go! Hydration You ve probably heard those narrators on the National Geographic specials say things like, Water gives life, or, Without water there could be no life. They may be overly dramatic,

More information

Introduction to Stages of Change and Change Talk in Motivational Interviewing Lisa Kugler, PsyD. March 29, 2018

Introduction to Stages of Change and Change Talk in Motivational Interviewing Lisa Kugler, PsyD. March 29, 2018 Introduction to Stages of Change and Change Talk in Motivational Interviewing Lisa Kugler, PsyD. March 29, 2018 Workshop Objectives Participants will be able to identify 3 key elements of motivational

More information

CONSORT 2010 Statement Annals Internal Medicine, 24 March History of CONSORT. CONSORT-Statement. Ji-Qian Fang. Inadequate reporting damages RCT

CONSORT 2010 Statement Annals Internal Medicine, 24 March History of CONSORT. CONSORT-Statement. Ji-Qian Fang. Inadequate reporting damages RCT CONSORT-Statement Guideline for Reporting Clinical Trial Ji-Qian Fang School of Public Health Sun Yat-Sen University Inadequate reporting damages RCT The whole of medicine depends on the transparent reporting

More information

Chapter 3 Producing Data

Chapter 3 Producing Data Chapter 3 Producing Data 3.1 Introduction How to get data? Available data: from the library and internet produced in the past for some other purpose but may help answer a present question. Produce data

More information

Applied Analysis of Variance and Experimental Design. Lukas Meier, Seminar für Statistik

Applied Analysis of Variance and Experimental Design. Lukas Meier, Seminar für Statistik Applied Analysis of Variance and Experimental Design Lukas Meier, Seminar für Statistik About Me Studied mathematics at ETH. Worked at the statistical consulting service and did a PhD in statistics (at

More information

ISC- GRADE XI HUMANITIES ( ) PSYCHOLOGY. Chapter 2- Methods of Psychology

ISC- GRADE XI HUMANITIES ( ) PSYCHOLOGY. Chapter 2- Methods of Psychology ISC- GRADE XI HUMANITIES (2018-19) PSYCHOLOGY Chapter 2- Methods of Psychology OUTLINE OF THE CHAPTER (i) Scientific Methods in Psychology -observation, case study, surveys, psychological tests, experimentation

More information

WORTH A CLOSER LOOK.

WORTH A CLOSER LOOK. A birth control pill... WORTH A CLOSER LOOK. Ask your healthcare provider about. Please see Important Safety Information including Boxed Warning throughout this brochure and on pages 4 and 5. offers a

More information

100% Effective Natural Hormone Treatment Menopause, Andropause And Other Hormone Imbalances Impair Healthy Healing In People Over The Age Of 30!

100% Effective Natural Hormone Treatment Menopause, Andropause And Other Hormone Imbalances Impair Healthy Healing In People Over The Age Of 30! This Free E Book is brought to you by Natural Aging.com. 100% Effective Natural Hormone Treatment Menopause, Andropause And Other Hormone Imbalances Impair Healthy Healing In People Over The Age Of 30!

More information

Psychology: The Science

Psychology: The Science Psychology: The Science How Psychologists Do Research Ex: While biking, it seems to me that drivers of pick up trucks aren t as nice as car drivers. I make a hypothesis or even develop a theory that p/u

More information

For each of the following cases, describe the population, sample, population parameters, and sample statistics.

For each of the following cases, describe the population, sample, population parameters, and sample statistics. Chapter 5: Statistical Reasoning Section 5A Fundamentals of Statistics Statistics is the science of collecting, organizing and interpreting data Statistics is the data that describe or summarize something

More information

LESSON 1: Introduction to Medication Administration

LESSON 1: Introduction to Medication Administration Welcome to the Pennsylvania Department of Public Welfare (DPW), Office of Developmental Programs (ODP) Medication Course for life sharers. Please adjust your computer s volume to a comfortable listening

More information

The Scientific Approach: A Search for Laws Basic assumption of science: Events are governed by some lawful order. Goals of psychology: Measure and

The Scientific Approach: A Search for Laws Basic assumption of science: Events are governed by some lawful order. Goals of psychology: Measure and The Scientific Approach: A Search for Laws Basic assumption of science: Events are governed by some lawful order. Goals of psychology: Measure and describe Understand and predict Apply and control Explain

More information

Observational the researcher collects information on attributes or measurements of interest but DOES NOT influence the results.

Observational the researcher collects information on attributes or measurements of interest but DOES NOT influence the results. Distinction between Observational and Experimental Studies Observational the researcher collects information on attributes or measurements of interest but DOES NOT influence the results. Experimental the

More information

Review Questions for Exam 2 Math 263

Review Questions for Exam 2 Math 263 Review Questions for Exam 2 Math 263 1. If you draw an M&M candy at random from a bag of the candies, the candy you draw will have one of six colors. The probability of drawing each color depends on the

More information

aps/stone U0 d14 review d2 teacher notes 9/14/17 obj: review Opener: I have- who has

aps/stone U0 d14 review d2 teacher notes 9/14/17 obj: review Opener: I have- who has aps/stone U0 d14 review d2 teacher notes 9/14/17 obj: review Opener: I have- who has 4: You should be able to explain/discuss each of the following words/concepts below... Observational Study/Sampling

More information

Chapter 9: Comparing two means

Chapter 9: Comparing two means Chapter 9: Comparing two means Smart Alex s Solutions Task 1 Is arachnophobia (fear of spiders) specific to real spiders or will pictures of spiders evoke similar levels of anxiety? Twelve arachnophobes

More information

Handout 1: Introduction to the Research Process and Study Design STAT 335 Fall 2016

Handout 1: Introduction to the Research Process and Study Design STAT 335 Fall 2016 DESIGNING OBSERVATIONAL STUDIES As we have discussed, for the purpose of establishing cause-and-effect relationships, observational studies have a distinct disadvantage in comparison to randomized comparative

More information

2 Critical thinking guidelines

2 Critical thinking guidelines What makes psychological research scientific? Precision How psychologists do research? Skepticism Reliance on empirical evidence Willingness to make risky predictions Openness Precision Begin with a Theory

More information

Psych 1Chapter 2 Overview

Psych 1Chapter 2 Overview Psych 1Chapter 2 Overview After studying this chapter, you should be able to answer the following questions: 1) What are five characteristics of an ideal scientist? 2) What are the defining elements of

More information

Exampro GCSE Biology. B1 Chapter 3 Drugs. Name: Class: Foundation tier. Author: Date: Time: 82. Marks: 82. Comments: Page 1 of 33

Exampro GCSE Biology. B1 Chapter 3 Drugs. Name: Class: Foundation tier. Author: Date: Time: 82. Marks: 82. Comments: Page 1 of 33 Exampro GCSE Biology B Chapter 3 Drugs Foundation tier Name: Class: Author: Date: Time: 82 Marks: 82 Comments: Page of 33 Q. Thalidomide is a drug that was developed in the 950s. In the 950s some pregnant

More information

Ready to give up. Booklet 3

Ready to give up. Booklet 3 Ready to give up Booklet 3 This booklet is written for people who have decided that they want to stop smoking. You can use this booklet on its own or go through it with the person who gave it to you. You

More information

Variable Data univariate data set bivariate data set multivariate data set categorical qualitative numerical quantitative

Variable Data univariate data set bivariate data set multivariate data set categorical qualitative numerical quantitative The Data Analysis Process and Collecting Data Sensibly Important Terms Variable A variable is any characteristic whose value may change from one individual to another Examples: Brand of television Height

More information

Review+Practice. May 30, 2012

Review+Practice. May 30, 2012 Review+Practice May 30, 2012 Final: Tuesday June 5 8:30-10:20 Venue: Sections AA and AB (EEB 125), sections AC and AD (EEB 105), sections AE and AF (SIG 134) Format: Short answer. Bring: calculator, BRAINS

More information