Lecture 5: Conditional probability

Size: px
Start display at page:

Download "Lecture 5: Conditional probability"

Transcription

1 Lecture 5: Conditional probability Statistics 101 Mine Çetinkaya-Rundel January 31, 2012

2 Announcements Announcements Teams: Clickers: a note about the team assignment survey sit with your teams in lab & (at least) today in lecture make sure to have registered to start collecting points daily clicker scores will be posted on Sakai 0: wasn t here / didn t answer at least 75% of the questions 1: answered at least 75% of the questions 2: answered at least 75% of the questions and correctly answered the review question Due: HW1, at the beginning of class on Thursday end of chapter exercises from textbook & on your own section of the lab typed ok stapled late work policy applies (see syllabus) Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

3 Recap Qnline quiz 1- commonly missed questions Great performance overall... Question 5: Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

4 Recap From lab... Variable assignment: # run the function and return the result > calcstreak(kobe$basket) [1] [46] # run the function and save the result > kobe_streak <- calcstreak(kobe$basket) # result can later be referenced and used in other functions > kobe_streak [1] [46] > mean(kobe_streak) [1] Saving your code in an R script: useful for referring back to your code later, much cleaner than looking for lines of code in your workspace will be very useful when working on projects saved R scripts (files that contain the code) can be found under the Files tab Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

5 Recap Review question Researchers randomly assigned 72 chronic users of cocaine into three groups: desipramine (antidepressant), lithium (standard treatment for cocaine) and placebo. Results of the study is shown below. Also shown is the distribution of number of patients who took desipramine and did not relapse based on 100 simulations of this experiment under the assumption of independence. no relapse no relapse total desipramine lithium placebo total Desipramine appears to be an (a) effective (b) ineffective treatment for cocaine addiction. srp/ stats/ 2 way tbl 1.htm Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

6 1 Conditional probability Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, 2012

7 Florida voters and illegal immigration 1,000 randomly sampled Florida voters were asked if they thought workers who have illegally entered the US should be allowed to keep their jobs and apply for US citizenship, allowed to keep their jobs as temporary guest workers but not allowed to apply for US citizenship, or lose their jobs and have to leave the country. The results of the survey by political ideology is shown below. conservative moderate liberal total apply for citizenship guest worker leave the country not sure total Note: 910 respondents answered both questions. SurveyUSA poll from Jan 27-29, 2012, client/ PollReport.aspx?g=60d6fa c51-a5f8-714f40976df2. Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

8 Marginal probability What is the probability that a Florida voter is conservative? is in favor of illegal immigrants working in the US staying and applying for citizenship? conservative moderate liberal total apply for citizenship guest worker leave the country not sure total P(conservative) = P(apply for citizenship) = marginal probability Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

9 Joint probability What is the probability that a Florida voter is conservative and is in favor of illegal immigrants working in the US staying and applying for citizenship? conservative moderate liberal total apply for citizenship guest worker leave the country not sure total P(conservative and apply for citizenship) = joint probability Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

10 Conditional probability If we know that a randomly selected Florida voter is conservative, what is the probability that s/he is in favor of illegal immigrants working in the US staying and applying for citizenship? conservative moderate liberal total apply for citizenship guest worker leave the country not sure total P(apply for citizenship conservative) = conditional probability Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

11 Conditional probability - another example Same survey asked if whether voters who are familiar with the DREAM act support or oppose it. 32% of the respondents are Democrats, 51% of the respondents support the DREAM act, and 21% of the respondents are Democrats and support the DREAM act. If we randomly select a respondent who supports the DREAM act, what is the probability that s/he is a Democrat? Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

12 Conditional probability - another example Same survey asked if whether voters who are familiar with the DREAM act support or oppose it. 32% of the respondents are Democrats, 51% of the respondents support the DREAM act, and 21% of the respondents are Democrats and support the DREAM act. If we randomly select a respondent who supports the DREAM act, what is the probability that s/he is a Democrat? P(Democrat) = 0.32 P(support) = 0.51 P(Democrat and support) = 0.21 P(Democrat support) =? Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

13 A contingency table of proportions support oppose total Democrat non-democrat total Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

14 A shortcut - Bayes Theorem Conditional probability (Bayes Theorem) P(A B) = P(A and B) P(B) Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

15 A shortcut - Bayes Theorem Conditional probability (Bayes Theorem) P(A B) = P(A and B) P(B) P(Democrat and support) P(Democrat support) = P(support) = = 0.41 Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

16 Clicker question At a large apartment complex, 58% of the units have a washer and dryer, 32% have double parking, and 20% have both washer and dryer and double parking. A unit with double parking just became available at this apartment complex, what is the probability that it also has washer and dryer? (a) 0.20 (b) (c) (d) Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

17 Clicker question At a large apartment complex, 58% of the units have a washer and dryer, 32% have double parking, and 20% have both washer and dryer and double parking. What percent of apartments have neither double parking nor washer and dryer? (a) 0.10 (b) (c) 0.20 (d) 0.30 Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

18 General multiplication rule Earlier we ve seen the multiplication rule for independent events: If A and B are independent, P(A and B) = P(A) P(B) Just now we saw Bayes theorem for calculating conditional probabilities: P(A and B) P(A B) = P(B) Bayes theorem doesn t require that the events be independent. By rearranging the above formula we obtain the following: General multiplication rule P(A and B) = P(A B) P(B) Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

19 Clicker question If events A and B are independent, which of the below is correct? (a) P(A B) = P(A and B) (b) P(A B) = P(A) (c) P(A B) = P(B) (d) P(A B) = 0 Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

20 What do you think? Clicker question If a woman tests positive for breast cancer on a mammogram, what is the probability that she actually has breast cancer? Take an educated guess. (a) Less than 15% (b) 15% to 40% (c) 40% to 60% (d) 60% to 85% (e) More than 85% Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

21 False positives In November 2009, the US Preventive Services Task Force changed its recommendations for breast cancer screening. Click here to play movie Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

22 Background information American Cancer Society estimates that about 1.7% of women have breast cancer. cancer/ cancerbasics/ cancer-prevalence Susan G. Komen For The Cure Foundation states that mammography correctly identifies about 78% of women who truly have breast cancer. ww5.komen.org/ BreastCancer/ AccuracyofMammograms.html An article published in 2003 suggests that up to 10% of all mammograms are false positive. pmc/ articles/ PMC Note: These percentages are approximate, and very difficult to estimate. Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

23 Cancer Mammography given cancer positive, *0.78 = cancer, negative, *0.22 = positive, *0.1 = no cancer, negative, *0.9 = Remember: P(A and B) = P(A B) P(B), from Bayes Theorem. Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

24 Clicker question If a woman tests positive for breast cancer on a mammogram, what is the probability that she actually has breast cancer? Choose the closest answer. (a) 1.5% (b) 3.6% (c) 12% (d) 78% (e) 88% Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

25 Clicker question Lupus is a medical phenomenon where antibodies that are supposed to attack foreign cells to prevent infections instead see plasma proteins as foreign bodies, leading to a high risk of blood clotting. It is believed that 2% of the population suffer from this disease. The test for lupus is very accurate if the person actually has lupus, however is very inaccurate if the person does not. More specifically, the test is 98% accurate if a person actually has the disease. The test is 74% accurate if a person does not have the disease. There is a line from the Fox television show House, often used after a patient tests positive for lupus: It s never lupus. Do you think there is truth to this statement? Use appropriate probabilities to support your answer. (a) yes (b) no Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

26 Statistics 101 (Mine Çetinkaya-Rundel) L5: Conditional probability January 31, / 22

Frequency table. Lecture 12: Relationships Between Categorical Variables. Contingency table. Bar plots

Frequency table. Lecture 12: Relationships Between Categorical Variables. Contingency table. Bar plots Frequency table Contingency tables Lecture 12: Relationships Between Categorical Variables Statistics 10 Colin Rundel February 27, 2012 A common way to summarize categorical variables is with a frequency

More information

Chapter. Sampling Distributions Pearson Prentice Hall. All rights reserved

Chapter. Sampling Distributions Pearson Prentice Hall. All rights reserved Chapter 8 Sampling Distributions 2010 Pearson Prentice Hall. All rights reserved Section 8.1 Distribution of the Sample Mean 2010 Pearson Prentice Hall. All rights reserved Objectives 1. Describe the distribution

More information

The Republican Race: Trump Remains on Top He ll Get Things Done February 12-16, 2016

The Republican Race: Trump Remains on Top He ll Get Things Done February 12-16, 2016 CBS NEWS POLL For release: Thursday, February 18, 2016 7:00 AM EST The Republican Race: Trump Remains on Top He ll Get Things Done February 12-16, 2016 Donald Trump (35%) continues to hold a commanding

More information

Analysis of Voters Opinions on Abortion in Women s Lives: Exploring Links to Equal Opportunity and Financial Stability

Analysis of Voters Opinions on Abortion in Women s Lives: Exploring Links to Equal Opportunity and Financial Stability Analysis of Voters Opinions on Abortion in Women s Lives: Exploring Links to Equal Opportunity and Financial Stability To: Interested Parties From: PerryUndem Research/Communication Date: October 15, 2014

More information

Elections Alberta Survey of Voters and Non-Voters

Elections Alberta Survey of Voters and Non-Voters Elections Alberta Survey of Voters and Non-Voters RESEARCH REPORT July 17, 2008 460, 10055 106 St, Edmonton, Alberta T5J 2Y2 Tel: 780.423.0708 Fax: 780.425.0400 www.legermarketing.com 1 SUMMARY AND CONCLUSIONS

More information

Florida Republican Presidential Primary Poll 3/14/16. Fox 13 Tampa Bay Fox 35 Orlando Florida Times-Union

Florida Republican Presidential Primary Poll 3/14/16. Fox 13 Tampa Bay Fox 35 Orlando Florida Times-Union Sponsor(s) Target Population Sampling Method Fox 13 Tampa Bay Fox 35 Orlando Florida Times-Union Florida; likely presidential primary voters; Republican Blended sample; mixed mode: Likely Republican primary

More information

What is Public Opinion?

What is Public Opinion? What is Public Opinion? Citizens opinions about politics and government actions Why does public opinion matter? Explains the behavior of citizens and public officials Motivates both citizens and public

More information

Kansas: Sam Brownback s Focus on Restricting Reproductive Health Care Access Can Cost Him in The Race for Governor

Kansas: Sam Brownback s Focus on Restricting Reproductive Health Care Access Can Cost Him in The Race for Governor June 16, 2014 Kansas: Sam Brownback s Focus on Restricting Reproductive Health Care Access Can Cost Him in The Race for Governor New NARAL Pro-Choice America Poll Shows That Broad-Based Communications

More information

PPIC Statewide Survey Methodology

PPIC Statewide Survey Methodology PPIC Statewide Survey Methodology Updated February 7, 2018 The PPIC Statewide Survey was inaugurated in 1998 to provide a way for Californians to express their views on important public policy issues.

More information

Chapter. Estimating the Value of a Parameter Using Confidence Intervals Pearson Prentice Hall. All rights reserved

Chapter. Estimating the Value of a Parameter Using Confidence Intervals Pearson Prentice Hall. All rights reserved Chapter 9 Estimating the Value of a Parameter Using Confidence Intervals 2010 Pearson Prentice Hall. All rights reserved Section 9.1 The Logic in Constructing Confidence Intervals for a Population Mean

More information

Vote Preference in Jefferson Parish Sheriff Election by Gender

Vote Preference in Jefferson Parish Sheriff Election by Gender March 22, 2018 A survey of 617 randomly selected Jefferson Parish registered voters was conducted March 18-20, 2018 by the University of New Orleans Survey Research Center on the Jefferson Parish Sheriff

More information

Belief in climate change eroding

Belief in climate change eroding FOR IMMEDIATE RELEASE Belief in climate change eroding Majority still believe human activity is the cause - In a random sampling of public opinion taken by the Forum Poll among 1286 Canadian adults, close

More information

SIENA COLLEGE RESEARCH INSTITUTE SIENA COLLEGE, LOUDONVILLE, NY

SIENA COLLEGE RESEARCH INSTITUTE SIENA COLLEGE, LOUDONVILLE, NY SIENA COLLEGE RESEARCH INSTITUTE SIENA COLLEGE, LOUDONVILLE, NY www.siena.edu/scri For Immediate Release: Wednesday, November 1, 2017 Contact: Steven Greenberg, 518-469-9858 PDF version; crosstabs; website:

More information

A survey of 1,005 Canadians Conducted on February 23, 2011 Released: February 24,

A survey of 1,005 Canadians Conducted on February 23, 2011 Released: February 24, Despite Oda, Conservative lead widens to 15 over the Liberals A survey of 1,005 Canadians Conducted on February 23, 2011 Released: February 24, 2011 www.abacusdata.ca Abacus Data: Not your average pollster

More information

Teacher's Guide. Key Elements of a Democratic Government. Period 1. Based on the NCERT curriculum for Standard VI

Teacher's Guide. Key Elements of a Democratic Government. Period 1. Based on the NCERT curriculum for Standard VI Teacher's Guide Key Elements of a Democratic Government Period 1 Based on the NCERT curriculum for Standard VI Developed in collaboration with Young Leaders for Active Citizenship (YLAC) Janaagraha Class

More information

A Dead Heat and the Electoral College

A Dead Heat and the Electoral College A Dead Heat and the Electoral College Robert S. Erikson Department of Political Science Columbia University rse14@columbia.edu Karl Sigman Department of Industrial Engineering and Operations Research sigman@ieor.columbia.edu

More information

October 21, 2015 Media Contact: Joanna Norris, Director Department of Public Relations (904)

October 21, 2015 Media Contact: Joanna Norris, Director Department of Public Relations (904) October 21, 2015 Media Contact: Joanna Norris, Director Department of Public Relations (904) 620-2102 UNF Poll Reveals Hillary Clinton Holds Significant Lead in Democratic Primary Race A new University

More information

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax Marist College Institute for Public Opinion Poughkeepsie, NY 12601 Phone 845.575.5050 Fax 845.575.5111 www.maristpoll.marist.edu POLL MUST BE SOURCED: MSNBC/Telemundo/Marist Poll* Issues 2016: Immigration

More information

NATIONAL: FAKE NEWS THREAT TO MEDIA; EDITORIAL DECISIONS, OUTSIDE ACTORS AT FAULT

NATIONAL: FAKE NEWS THREAT TO MEDIA; EDITORIAL DECISIONS, OUTSIDE ACTORS AT FAULT Please attribute this information to: Monmouth University Poll West Long Branch, NJ 07764 www.monmouth.edu/polling Follow on Twitter: @MonmouthPoll Released: Monday, April 2, 2018 Contact: PATRICK MURRAY

More information

Release #2337 Release Date and Time: 6:00 a.m., Friday, June 4, 2010

Release #2337 Release Date and Time: 6:00 a.m., Friday, June 4, 2010 THE FIELD POLL THE INDEPENDENT AND NON-PARTISAN SURVEY OF PUBLIC OPINION ESTABLISHED IN 1947 AS THE CALIFORNIA POLL BY MERVIN FIELD Field Research Corporation 601 California Street, Suite 900 San Francisco,

More information

University of North Florida Public Opinion Research Lab

University of North Florida Public Opinion Research Lab University of North Florida Public Opinion Research Lab www.unf.edu/coas/porl/ October 27, 2016 Media Contact: Joanna Norris, Director Department of Public Relations (904) 620-2102 Methodology Results

More information

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax Marist College Institute for Public Opinion Poughkeepsie, NY 12601 Phone 845.575.5050 Fax 845.575.5111 www.maristpoll.marist.edu POLL MUST BE SOURCED: McClatchy-Marist Poll* Clinton Leads GOP Rivals, but

More information

2. Do you approve or disapprove of the job Congress is doing? Sep 08 17% 73 9 Democrats 28% Sep 08 23% 68 8 Republicans 10% 87 3

2. Do you approve or disapprove of the job Congress is doing? Sep 08 17% 73 9 Democrats 28% Sep 08 23% 68 8 Republicans 10% 87 3 18 March 2010 Polling was conducted by telephone March 16-17, 2010, in the evenings. The total sample is 900 registered voters nationwide with a margin of error of 3 percentage points. Results are of registered

More information

Voting: Issues, Problems, and Systems, Continued

Voting: Issues, Problems, and Systems, Continued Voting: Issues, Problems, and Systems, Continued 7 March 2014 Voting III 7 March 2014 1/27 Last Time We ve discussed several voting systems and conditions which may or may not be satisfied by a system.

More information

Latino Decisions / America's Voice June State Latino Battleground Survey

Latino Decisions / America's Voice June State Latino Battleground Survey Latino Decisions / America's Voice June 2012 5-State Latino Battleground Survey 1. On the whole, what are the most important issues facing the Hispanic community that you think Congress and the President

More information

Public Opinion. John N. Lee. Summer Florida State University. John N. Lee (Florida State University) Public Opinion Summer / 20

Public Opinion. John N. Lee. Summer Florida State University. John N. Lee (Florida State University) Public Opinion Summer / 20 Public Opinion John N. Lee Florida State University Summer 2010 John N. Lee (Florida State University) Public Opinion Summer 2010 1 / 20 What is it? Public Opinion Opinions held by private individuals

More information

NATIONAL: POTUS LESS TRUSTED THAN MEDIA, FAKE NEWS COMES FROM ALL SOURCES

NATIONAL: POTUS LESS TRUSTED THAN MEDIA, FAKE NEWS COMES FROM ALL SOURCES Please attribute this information to: Monmouth University Poll West Long Branch, NJ 07764 www.monmouth.edu/polling Follow on Twitter: @MonmouthPoll Released: Wednesday, 29, Contact: PATRICK MURRAY 732-979-6769

More information

Nearly Six in 10 Back Arizona Law But Also a Pathway to Citizenship

Nearly Six in 10 Back Arizona Law But Also a Pathway to Citizenship ABC NEWS/WASHINGTON POST POLL: IMMIGRATION EMBARGOED FOR RELEASE AFTER 12 p.m. Thursday, June 17, 2010 Nearly Six in 10 Back Arizona Law But Also a Pathway to Citizenship Most Americans back tougher measures

More information

Ipsos MORI June 2016 Political Monitor

Ipsos MORI June 2016 Political Monitor Ipsos MORI June 2016 Political Monitor Topline Results 16 June 2016 Fieldwork: 11 h 14 th June 2016 Technical Details Ipsos MORI interviewed a representative sample of 1,257 adults aged 18+ across Great

More information

HOT WATER FOR MENENDEZ? OR NJ VOTERS SAY MENENDEZ IS GUILTY; GOOD NEWS IS EVERYONE ELSE IS TOO

HOT WATER FOR MENENDEZ? OR NJ VOTERS SAY MENENDEZ IS GUILTY; GOOD NEWS IS EVERYONE ELSE IS TOO For immediate release Thursday, April 30 Contact: Krista Jenkins 973.443.8390; kjenkins@fdu.edu 7 pages HOT WATER FOR MENENDEZ? OR NJ VOTERS SAY MENENDEZ IS GUILTY; GOOD NEWS IS EVERYONE ELSE IS TOO Garden

More information

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 12) Integrating Datasets Objective: Analyze two data sets at the same time by combining them within Tableau. Learning Outcomes: Identify

More information

AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy

AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy AP Statistics Assignments Mr. Kearns José Martí MAST 6-12 Academy 2017-2018 Date Assigned Assignments April 25, 2018 Complete FRQ section for practice exam #3 by Monday, April 30. Use scoring guide for

More information

Political ignorance & policy preference. Eric Crampton University of Canterbury

Political ignorance & policy preference. Eric Crampton University of Canterbury Political ignorance & policy preference Eric Crampton University of Canterbury What do we know? Know US House majority party 69% know it Can name their member of Congress 46% know it Know term of House

More information

PSC 333: The U.S. Congress 209 Graham Building Mondays & Wednesdays, 2:00-3:15 Spring Course Description

PSC 333: The U.S. Congress 209 Graham Building Mondays & Wednesdays, 2:00-3:15 Spring Course Description PSC 333: The U.S. Congress 209 Graham Building Mondays & Wednesdays, 2:00-3:15 Spring 2011 Professor David B. Holian Office: 229 Graham Building Telephone: 256-0514 Office Hours: Tuesdays 1:30 to 3:30,

More information

University of North Florida Public Opinion Research Lab

University of North Florida Public Opinion Research Lab University of North Florida Public Opinion Research Lab www.unf.edu/coas/porl/ Embargo for September 24, 2018 5 a.m. EST Media Contact: Joanna Norris, Director Department of Public Relations (904) 620-2102

More information

Georgia Democratic Presidential Primary Poll 2/23/16. Fox 5 Atlanta

Georgia Democratic Presidential Primary Poll 2/23/16. Fox 5 Atlanta Sponsor(s) Fox 5 Atlanta Target Population Sampling Method Georgia; likely presidential primary voters; Democrat Blended sample; mixed mode: Likely Democratic primary voters were selected at random from

More information

Americans Want a Direct Say in Government: Survey Results in All 50 States on Initiative & Referendum

Americans Want a Direct Say in Government: Survey Results in All 50 States on Initiative & Referendum Americans Want a Direct Say in Government: Survey Results in All 50 States on Initiative & Referendum 2050 Old Bridge Road Suite 103 Lake Ridge, VA 22192 (703) 492-1776 www.citizensincharge.org www.citizensinchargefoundation.org

More information

Loras College Statewide Wisconsin Survey October/November 2016

Loras College Statewide Wisconsin Survey October/November 2016 Loras College Statewide Wisconsin Survey October/November 0 Field Dates: October November, 0 Completed Surveys: 00 Margin of Error: +/.% Note on Methodology: The Loras College Poll surveyed 00 Wisconsin

More information

Goucher Poll Releases First Round of Inaugural Results Marylanders Share Perceptions of Same-Sex Marriage, Immigration, and Expanded Gambling

Goucher Poll Releases First Round of Inaugural Results Marylanders Share Perceptions of Same-Sex Marriage, Immigration, and Expanded Gambling Press Contact Information Dr. Mileah Kromer Director, Sarah T. Hughes Field Politics Center mileah.kromer@goucher.edu Cell: 724-840-0990 Kristen Pinheiro Director, Media Relations kristen.pinheiro@goucher.edu

More information

2016 Nova Scotia Culture Index

2016 Nova Scotia Culture Index 2016 Nova Scotia Culture Index Final Report Prepared for: Communications Nova Scotia and Department of Communities, Culture and Heritage March 2016 www.cra.ca 1-888-414-1336 Table of Contents Page Introduction...

More information

Political Polling in Colorado: Wave 2 Research undertaken for Reuters

Political Polling in Colorado: Wave 2 Research undertaken for Reuters 1146 19 th St., NW, Suite 200 Washington, DC 20036 (202) 463-7300 Interview dates: October 15-17, 2010 Interviews: 600 registered ; 405 likely in Colorado 231 Democrats/Lean Democrats ; 309 Republicans/Lean

More information

Tax Cut Welcomed in BC, But No Bounce for Campbell Before Exit

Tax Cut Welcomed in BC, But No Bounce for Campbell Before Exit Page 1 of 10 PROVINCIAL POLITICAL SCENE Tax Cut Welcomed in BC, But No Bounce for Campbell Before Exit The provincial NDP maintains a high level of voter support, and two-thirds of British Columbians would

More information

Analysis of Categorical Data from the California Department of Corrections

Analysis of Categorical Data from the California Department of Corrections Lab 5 Analysis of Categorical Data from the California Department of Corrections About the Data The dataset you ll examine is from a study by the California Department of Corrections (CDC) on the effectiveness

More information

Profiling the Clinton Presidency

Profiling the Clinton Presidency Profiling the Clinton Presidency Question: Do you approve or disapprove of the way Bill Clinton is handling his job as president? First Term Average Second Term Average Approve 49% Approve 62% Disapprove

More information

What is the Best Election Method?

What is the Best Election Method? What is the Best Election Method? E. Maskin Harvard University Gorman Lectures University College, London February 2016 Today and tomorrow will explore 2 Today and tomorrow will explore election methods

More information

Women Voters Ages 50+ and the 2016 Election: Thoughts on Social Security and the Presidential Candidates.

Women Voters Ages 50+ and the 2016 Election: Thoughts on Social Security and the Presidential Candidates. Women Voters Ages 50+ and the 2016 Election: Thoughts on Social Security and the Presidential Candidates. Results from a survey of 717 women age 50+ likely to vote this November in the state of Florida.

More information

VOTING IN CONGRESS: It s More Than Just Yea or Nay. (It s more than thumbs up or down, too. Sorry.)

VOTING IN CONGRESS: It s More Than Just Yea or Nay. (It s more than thumbs up or down, too. Sorry.) VOTING IN CONGRESS: It s More Than Just Yea or Nay (It s more than thumbs up or down, too. Sorry.) MEMBERS OF CONGRESS THINK ABOUT FOUR FACTORS when deciding whether to vote for a law. FACTOR #1 FACTOR

More information

University of North Florida Public Opinion Research Lab

University of North Florida Public Opinion Research Lab University of North Florida Public Opinion Research Lab www.unf.edu/coas/porl/ October 4, 2018 Media Contact: Joanna Norris, Director Department of Public Relations (904) 620-2102 Methodology Results Contact:

More information

Red Oak Strategic Presidential Poll

Red Oak Strategic Presidential Poll Red Oak Strategic Presidential Poll Fielded 9/1-9/2 Using Google Consumer Surveys Results, Crosstabs, and Technical Appendix 1 This document contains the full crosstab results for Red Oak Strategic s Presidential

More information

WHERE EVERYONE DESERVES A

WHERE EVERYONE DESERVES A The Umansky Law Firm WHERE EVERYONE DESERVES A WHERE EVERYONE DESERVES A SECOND CHANCE! 1945 EAST MICHIGAN STREET ORLANDO, FL 32806 (407)228-3838 The following text found in this guide has been mostly

More information

PENNSYLVANIA: SMALL LEAD FOR SACCONE IN CD18

PENNSYLVANIA: SMALL LEAD FOR SACCONE IN CD18 Please attribute this information to: Monmouth University Poll West Long Branch, NJ 07764 www.monmouth.edu/polling Follow on Twitter: @MonmouthPoll Released: Thursday, 15, Contact: PATRICK MURRAY 732-979-6769

More information

Pennsylvania Republican Presidential Primary Poll 4/25/16. Sponsor(s) Fox 29 Philadelphia WTXF. Target Population

Pennsylvania Republican Presidential Primary Poll 4/25/16. Sponsor(s) Fox 29 Philadelphia WTXF. Target Population Sponsor(s) Target Population Sampling Method Fox 29 Philadelphia WTXF Pennsylvania; likely presidential primary voters; Republicans Blended sample; mixed mode: Likely Republican primary voters were selected

More information

2017 Survey of Cuban American Registered Voters

2017 Survey of Cuban American Registered Voters 2017 Survey of Cuban American Registered Voters surveyusa.net www.inspireamerica.org The survey was commissioned by Inspire America and conducted by #1 ranked national polling firm, SurveyUSA. No research

More information

Political Science 1 Government of the United States and California Tuesday-Thursday 9:30-10:55 Section #2723 SOCS 212 Fall 2016

Political Science 1 Government of the United States and California Tuesday-Thursday 9:30-10:55 Section #2723 SOCS 212 Fall 2016 Political Science 1 Government of the United States and California Tuesday-Thursday 9:30-10:55 Section #2723 SOCS 212 Fall 2016 Instructor: Eduardo Munoz Office: SOCS 109 Email: emunoz@elcamino.edu Office

More information

Video Notes Unit 2 Political Beliefs & Behaviors

Video Notes Unit 2 Political Beliefs & Behaviors Video Notes Unit 2 Political Beliefs & Behaviors Name Class Period Name: AP Gov Review: Video #7, Citizens Beliefs About Government And Leaders Big Idea Questions What is the elitism view of government?

More information

HOW THE POLL WAS CONDUCTED

HOW THE POLL WAS CONDUCTED HOW THE POLL WAS CONDUCTED This poll was conducted by Mason-Dixon Polling & Research, Inc. of Jacksonville, Florida from March 21 through March 24, 2018. A total of 625 registered Arkansas voters were

More information

Canadians Divided on Assuming Non-Combat Role in Afghanistan

Canadians Divided on Assuming Non-Combat Role in Afghanistan Page 1 of 13 WAR IN AFGHANISTAN Canadians Divided on Assuming Non-Combat Role in Afghanistan Support for the current military engagement remains below the 40 per cent mark across the country. [VANCOUVER

More information

Political Science 1 Government of the United States and California (ONLINE) Section #4192&4193 Summer Phone: (310) XT.

Political Science 1 Government of the United States and California (ONLINE) Section #4192&4193 Summer Phone: (310) XT. Political Science 1 Government of the United States and California ONLINE Section #4192&4193 Summer 2012 Instructor: Eduardo Munoz Office: SOCS 109 Email: emunoz@elcamino.edu Office Hours: M 8-10pm Phone:

More information

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax Marist College Institute for Public Opinion Poughkeepsie, NY 12601 Phone 845.575.5050 Fax 845.575.5111 www.maristpoll.marist.edu POLL MUST BE SOURCED: McClatchy-Marist Poll* Majority Wants Immediate Action

More information

Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia

Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia Name: Date: Period: Thurs 10/10 (Tues 10/15) Grading FRQs Conservative and liberal views of the Affordable Care Act Video:

More information

Electoral forecasting with Stata

Electoral forecasting with Stata Electoral forecasting with Stata Four years later Modesto Escobar & Pablo Cabrera University of Salamanca (Spain) 2016 Spanish Stata Users Group meeting Barcelona, 20th October, 2016 1 / 18 Introduction

More information

Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section

Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section Fall 2016 COP 3223H Program #5: Election Season Nears an End Due date: Please consult WebCourses for your section Objective(s) 1. To learn how to use 1D arrays to solve a problem in C. Problem A: Expected

More information

Hey, there, (Name) here! Alright, so if you wouldn t mind just filling out this short

Hey, there, (Name) here! Alright, so if you wouldn t mind just filling out this short Measuring Public Opinion GV344 Activity Introduction Hey, there, (Name) here! Alright, so if you wouldn t mind just filling out this short questionnaire, we can get started here. Do you think I am A) awesome,

More information

CHAPTER 11 PUBLIC OPINION AND POLITICAL SOCIALIZATION. Narrative Lecture Outline

CHAPTER 11 PUBLIC OPINION AND POLITICAL SOCIALIZATION. Narrative Lecture Outline CHAPTER 11 PUBLIC OPINION AND POLITICAL SOCIALIZATION Narrative Lecture Outline Public opinion and polling was front page news and the opening story in November 2000. Television and Web-based news organizations

More information

Alabama Republican Presidential Primary Poll 2/26/16. None

Alabama Republican Presidential Primary Poll 2/26/16. None Sponsor(s) None Target Population Sampling Method Alabama; likely presidential primary voters; Republican Likely Republican primary voters were selected at random from a list of registered voters. Only

More information

THE FIELD POLL FOR ADVANCE PUBLICATION BY SUBSCRIBERS ONLY.

THE FIELD POLL FOR ADVANCE PUBLICATION BY SUBSCRIBERS ONLY. THE FIELD POLL THE INDEPENDENT AND NON-PARTISAN SURVEY OF PUBLIC OPINION ESTABLISHED IN 1947 AS THE CALIFORNIA POLL BY MERVIN FIELD Field Research Corporation 601 California Street, Suite 900 San Francisco,

More information

EVIDENCE Copyright July 1999 State Bar of California

EVIDENCE Copyright July 1999 State Bar of California EVIDENCE Copyright July 1999 State Bar of California Mary Smith sued Dr. Jones, alleging that Jones negligently performed surgery on her back, leaving her partly paralyzed. In her case-in-chief, Mary called

More information

Before the Storm: The Presidential Race October 25-28, 2012

Before the Storm: The Presidential Race October 25-28, 2012 CBS NEWS/NEW YORK TIMES POLL For release: October 30, 2012 6:30 PM EDT Before the Storm: The Presidential Race October 25-28, 2012 In polling conducted before Hurricane Sandy hit the east coast, the presidential

More information

MEMORANDUM 72% OF LIKELY VOTERS SUPPORT LEGAL MEDICAL CANNABIS FOR SERIOUS ILLNESSES

MEMORANDUM 72% OF LIKELY VOTERS SUPPORT LEGAL MEDICAL CANNABIS FOR SERIOUS ILLNESSES MEMORANDUM To: Interested individuals From: Scott Riding, Y 2 Analytics Date: March 2, 2015 Re: Statewide survey of likely voters about medical cannabis policy in Utah 72% OF LIKELY VOTERS SUPPORT LEGAL

More information

AP United States Government and Politics Syllabus

AP United States Government and Politics Syllabus AP United States Government and Politics Syllabus Textbook American Senior High School American Government: Institutions and Policies, Wilson, James Q., and John J. DiLulio Jr., 9 th Edition. Boston: Houghton

More information

Polling and Politics. Josh Clinton Abby and Jon Winkelried Chair Vanderbilt University

Polling and Politics. Josh Clinton Abby and Jon Winkelried Chair Vanderbilt University Polling and Politics Josh Clinton Abby and Jon Winkelried Chair Vanderbilt University (Too much) Focus on the campaign News coverage much more focused on horserace than policy 3 4 5 Tell me again how you

More information

As you may have heard, there has been some discussion about possibly changing Canada's electoral system. We want to ask people their views on this.

As you may have heard, there has been some discussion about possibly changing Canada's electoral system. We want to ask people their views on this. Ballot Testing and Voting System Survey [Screen for PC-only won't work on mobile] [Intro Screen] As you may have heard, there has been some discussion about possibly changing Canada's electoral system.

More information

Is government action the best solution to cooperation in large groups?

Is government action the best solution to cooperation in large groups? Is government action the best solution to cooperation in large groups? A. Yes, generally B. No, generally C. It depends Think about why or why not. What does it depend on? Why did you vote the way you

More information

Motivations and Barriers: Exploring Voting Behaviour in British Columbia

Motivations and Barriers: Exploring Voting Behaviour in British Columbia Motivations and Barriers: Exploring Voting Behaviour in British Columbia January 2010 BC STATS Page i Revised April 21st, 2010 Executive Summary Building on the Post-Election Voter/Non-Voter Satisfaction

More information

North Carolinians split over immigration

North Carolinians split over immigration FOR IMMEDIATE RELEASE CONTACT: MARK YACOUB June 25, 2007 919-649-5263 North Carolinians split over immigration Raleigh, N.C. A recent survey conducted on June 18, 2007 by Public Policy Polling (PPP) found

More information

Alabama Statewide Republican Primary Runoff Election August 24 26, 2017

Alabama Statewide Republican Primary Runoff Election August 24 26, 2017 Alabama Statewide Republican Primary Runoff Election August 24 26, 2017 Q. In August, which political party s primary election for Senate did you vote in? Republican primary 92% Did not vote 8% Q. How

More information

DEFINITIONS OF POPULATION POLICY VARIABLES

DEFINITIONS OF POPULATION POLICY VARIABLES DEFINITIONS OF POPULATION POLICY VARIABLES Population size and growth View on growth Policy on growth Population age structure the size of the workingage population ageing of the population Measures adopted

More information

Views of the Economy by Party --- Now / Reps Dems Inds Reps Dems Inds Good 61% 67% 56% 31% 78% 53% Bad

Views of the Economy by Party --- Now / Reps Dems Inds Reps Dems Inds Good 61% 67% 56% 31% 78% 53% Bad CBS NEWS POLL For release: Thursday, February 23, 2017 7:00 am EST Optimism on the Economy, Concern About Immigration February 17-21, 2017 Evaluations of the nation s economy are the most positive they

More information

Introduction: Data & measurement

Introduction: Data & measurement Introduction: & measurement Johan A. Elkink School of Politics & International Relations University College Dublin 7 September 2015 1 2 3 4 1 2 3 4 Definition: N N refers to the number of cases being studied,

More information

North Carolina Races Tighten as Election Day Approaches

North Carolina Races Tighten as Election Day Approaches North Carolina Races Tighten as Election Day Approaches Likely Voters in North Carolina October 23-27, 2016 Table of Contents KEY SURVEY INSIGHTS... 1 PRESIDENTIAL RACE... 1 PRESIDENTIAL ELECTION ISSUES...

More information

How Should Members of Parliament (and Presidents) Be Elected? E. Maskin Institute for Advanced Study

How Should Members of Parliament (and Presidents) Be Elected? E. Maskin Institute for Advanced Study How Should Members of Parliament (and Presidents) Be Elected? E. Maskin Institute for Advanced Study What s wrong with this picture? 2005 U.K. General Election Constituency of Croyden Central vote totals

More information

Florida Statewide April/May 2016

Florida Statewide April/May 2016 Florida Statewide April/May 16 Securing Florida s Future Methodology Six hundred and twenty-two (622) Florida voters were interviewed by a professional polling firm April 24-28, 16 The margin of error

More information

HIGH POINT UNIVERSITY POLL MEMO RELEASE 10/13/2017 (UPDATE)

HIGH POINT UNIVERSITY POLL MEMO RELEASE 10/13/2017 (UPDATE) HIGH POINT UNIVERSITY POLL MEMO RELEASE 10/13/2017 (UPDATE) ELEMENTS Population represented Sample size Mode of data collection Type of sample (probability/nonprobability) Start and end dates of data collection

More information

Politics is about who gets what, when, and how. Harold Lasswell

Politics is about who gets what, when, and how. Harold Lasswell GOVT 2301 National, State, and Local Government I - (ONLINE) BRAZOSPORT COLLEGE Fall 2012 Professor: Wayne Pryor Wayne.pryor@brazosport.edu Office Phone: 979-230-3222 Campus Office: B-244-A Politics is

More information

Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia

Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia Unit #2: Political Beliefs/Political Behaviors AP US Government & Politics Mr. Coia Name: Date: Period: Mon 10/6 AP Gov course evaluation Grading FRQs Conservative and liberal views Explain Election Interview

More information

PCs Lead in Ontario FOR IMMEDIATE RELEASE. MEDIA INQUIRIES: Lorne Bozinoff, President

PCs Lead in Ontario FOR IMMEDIATE RELEASE. MEDIA INQUIRIES: Lorne Bozinoff, President FOR IMMEDIATE RELEASE PCs Lead in Ontario Wynne at lowest approval ever In a random sampling of public opinion taken by the Forum Poll among 1124 Ontario voters, more than 4-in-10 will vote for the Conservatives

More information

8 5 Sampling Distributions

8 5 Sampling Distributions 8 5 Sampling Distributions Skills we've learned 8.1 Measures of Central Tendency mean, median, mode, variance, standard deviation, expected value, box and whisker plot, interquartile range, outlier 8.2

More information

Political Science 1 Government of the United States and California Tuesday/Thursday 11:15-12:40 Section #2646 SOCS 212 Spring 2014

Political Science 1 Government of the United States and California Tuesday/Thursday 11:15-12:40 Section #2646 SOCS 212 Spring 2014 Political Science 1 Government of the United States and California Tuesday/Thursday 11:15-12:40 Section #2646 SOCS 212 Spring 2014 Instructor: Eduardo Munoz Office: SOCS 109 Email: emunoz@elcamino.edu

More information

AUTHORIZATION GUIDE. General Information. Use this guide to help you complete the online Authorization on ETS, for the purpose of:

AUTHORIZATION GUIDE. General Information. Use this guide to help you complete the online Authorization on ETS, for the purpose of: General Information Purpose Use this guide to help you complete the online Authorization on ETS, for the purpose of: (a) Authorizing a company to act on behalf of the designated representative (Crown lessee

More information

ANNUAL SURVEY REPORT: REGIONAL OVERVIEW

ANNUAL SURVEY REPORT: REGIONAL OVERVIEW ANNUAL SURVEY REPORT: REGIONAL OVERVIEW 2nd Wave (Spring 2017) OPEN Neighbourhood Communicating for a stronger partnership: connecting with citizens across the Eastern Neighbourhood June 2017 TABLE OF

More information

Forecasting the 2012 U.S. Presidential Election: Should we Have Known Obama Would Win All Along?

Forecasting the 2012 U.S. Presidential Election: Should we Have Known Obama Would Win All Along? Forecasting the 2012 U.S. Presidential Election: Should we Have Known Obama Would Win All Along? Robert S. Erikson Columbia University Keynote Address IDC Conference on The Presidential Election of 2012:

More information

Voting and Non-Voting in Christchurch City

Voting and Non-Voting in Christchurch City Voting and Non-Voting in Christchurch City Territorial local Authority and District Health Board Elections October 2001 Voting and Non-Voting in Christchurch City An analysis of a survey on voter attitudes

More information

Refugee Health Curriculum University of Colorado School of Medicine

Refugee Health Curriculum University of Colorado School of Medicine University of Colorado School of Medicine Course Description: World disasters, conflicts and persecutions have resulted in growing refugee populations worldwide. According to the Colorado Department of

More information

Public Opinion and Political Participation

Public Opinion and Political Participation CHAPTER 5 Public Opinion and Political Participation CHAPTER OUTLINE I. What Is Public Opinion? II. How We Develop Our Beliefs and Opinions A. Agents of Political Socialization B. Adult Socialization III.

More information

RUTGERS-EAGLETON POLL: MOST NEW JERSEYANS SUPPORT DREAM ACT

RUTGERS-EAGLETON POLL: MOST NEW JERSEYANS SUPPORT DREAM ACT Eagleton Institute of Politics Rutgers, The State University of New Jersey 191 Ryders Lane New Brunswick, New Jersey 08901-8557 www.eagleton.rutgers.edu eagleton@rci.rutgers.edu 732-932-9384 Fax: 732-932-6778

More information

Among the key specific findings of the survey are the following:

Among the key specific findings of the survey are the following: TO: FROM: RE: Interested Parties David Metz and Curtis Below Fairbank, Maslin, Maullin, Metz & Associates Key Findings from Recent Survey on Fracking in California DATE: May 20, 2014 Fairbank, Maslin,

More information

Citizen's Guide to Town Meetings

Citizen's Guide to Town Meetings Citizen's Guide to Town Meetings An Important Message for all Massachusetts Town Residents The purest form of democratic governing is practiced in a Town Meeting. In use for over 300 years and still today,

More information

Many Social Choice Rules

Many Social Choice Rules Many Social Choice Rules 1 Introduction So far, I have mentioned several of the most commonly used social choice rules : pairwise majority rule, plurality, plurality with a single run off, the Borda count.

More information

BY Amy Mitchell, Jeffrey Gottfried, Michael Barthel and Nami Sumida

BY Amy Mitchell, Jeffrey Gottfried, Michael Barthel and Nami Sumida FOR RELEASE JUNE 18, 2018 BY Amy Mitchell, Jeffrey Gottfried, Michael Barthel and Nami Sumida FOR MEDIA OR OTHER INQUIRIES: Amy Mitchell, Director, Journalism Research Jeffrey Gottfried, Senior Researcher

More information

Colorado s Risk-Limiting Audits (RLA) CO Risk-Limiting Audits -- Feb Neal McBurnett

Colorado s Risk-Limiting Audits (RLA) CO Risk-Limiting Audits -- Feb Neal McBurnett Colorado s Risk-Limiting Audits (RLA) CO Risk-Limiting Audits -- Feb 2018 -- Neal McBurnett Overview of the Journey Post-Election Audits are Important How Traditional Audits Work Why RLA is better Definitions

More information