Data Analytics for Social Science Comparing through visualisation

Size: px
Start display at page:

Download "Data Analytics for Social Science Comparing through visualisation"

Transcription

1 Data Analytics for Social Science Comparing through Johan A. Elkink School of Politics & International Relations University College Dublin 3 October 2017

2 Outline 1 2 Embellishments and aesthetics 3 factors 4

3 Graphs are typically used to show either the distribution of one variable or the correlation between two variables. They can also be used for showing the relationship between multiple variables at once. Or between raw data and model estimations.

4 source

5 Example: income distribution source

6 Example: income distribution source

7 and ggplot Three main methods to split : aesthetics: Vary aesthetics by group, e.g. color or point size. geom_bar(aes(x = party, fill = dublin)) overlays: Add multiple geometries to the same plot, e.g. scatter plot with smooth curves. geom_point(position = "jitter") + geom_smooth(color = "black") facets: Split the graph in sub to show effects for different categories. geom_smooth(color = "black") + facet_wrap(~ party) ggplot2 cheat sheet

8 Facets myplot <- ggplot(ie, aes(x=knowledge, y=turnout) + geom_point() + geom_smooth(color = "blue") Facets in a grid of columns: myplot + facet_grid(interest ~.) Facets in a grid of rows: myplot + facet_grid(. ~ interest) Facets in a rectangular grid: myplot + facet_wrap(~ interest) source R Cookbook: Facets

9 Outline 1 2 Embellishments and aesthetics 3 factors 4

10 One can visualise different groups or effects by varying the color, shape, or thickness of lines and points. pl <- ggplot(ievoters, aes(x = interestpolitics, y = supportlabour)) pl + geom_bar(color = "blue") pl + geom_points(fill = "yellow") pl + geom_points(aes(shape = factor(party))) pl + geom_points(size = knowledge) pl + geom_point(shape = 21, colour = "black", fill = "white", size = 5, stroke = 5) R Cookbook: Colors ggplot2 docs ggplot2 aesthetics

11 Shading Sometimes shading or transparency can to overlay plots, or simply to make them look more professional. ggplot(diamonds, aes(depth, fill = cut, colour = cut)) + geom_density(alpha = 0.1) + xlim(55, 70) source

12 Titles and labels Proper titles and labels are essential. A graph should be interpretable without reading the accompanying description in the text (but the text should always describe all!). pl <- ggplot(ievoters, aes(x = interestpolitics, y = supportlabour)) pl + ggtitle("pol. interest and support for Lab") + theme(plot.title = element_text(lineheight=.8, face="bold")) R Cookbook: Titles

13 Legends bp <- ggplot(ees, aes(x = factor(dublin), y = age, fill = factor(dublin))) + geom_boxplot() bp + scale_fill_discrete(name="residency", breaks=c("1", "0"), labels=c("dublin", "Outside Dublin")) R Cookbook: Legends

14 Internal labels Sometimes it helps to add labels inside the plot itself too. pl + geom_points() + geom_text(aes(label = factor(dublin)))

15 Good captions, including sources and interpretation, is crucial for clear communication with.

16 Outline 1 2 Embellishments and aesthetics 3 factors 4

17 If healthier patients take a drug and sicker patients do not, we can find an association between drug and recovery even when the drug does not work. If sicker patients take a drug and healthier patients do not, we might not find an association between drug and recovery even when the drug works. association causation

18 Causation For something to be a causal relationship, the cause should precede the effect in time; the dependent and independent variables should correlate; no third variable should explain this correlation; there should be a logical explanation or causal mechanism linking the two.

19 Control variables To isolate the effect of the treatment on the effect we need to control for the confounder. can be used to control, evaluating the effect of the treatment on the effect for different categories of the confounding variable.

20 Control variables: example Turnout Knowledge No Yes Low High (fake data)

21 Control variables: example High interest in politics Turnout Knowledge No Yes Low High 8 92 Low interest in politics Turnout Knowledge No Yes Low High (fake data)

22 Brexit example: attention effects prointegration attention ggplot(brexit, aes(x = attention, y = prointegration)) + geom_jitter(alpha =.2) + geom_smooth(method = "lm", se = FALSE)

23 Brexit example: attention effects Conservative Labour Liberal Democrat prointegration Other UKIP Would not vote attention

24 Conservative Labour Liberal Democrat Other UKIP Would not vote Brexit example: attention effects prointegration attention ggplot(brexit, aes(x = attention, y = prointegration)) + geom_jitter(alpha =.2) + geom_smooth(method = "lm", se = FALSE) + facet_wrap(~ party)

25 Outline 1 2 Embellishments and aesthetics 3 factors 4

26 Project 1: assignment Using the data used in Labs 1 4, 1 Take either vote or prointegration as the dependent variable. 2 Select a key independent variable of interest in the data, e.g. education, pro-integration attitude, levels of uncertainty, attitudes towards immigrants or the economy. 3 Identify potential confounding factors (among the remaining variables in the data set). 4 Use one bivariate and at least two multivariate to investigate the relationship between the key independent variable and the dependent variable, taking into account the confounders. 5 Write a 1,000-1,250 word essay (excluding captions and bibliography), including the, discussing your interpretation of the analysis.

27 Project 1: essay structure All assignments should be submitted electronically to consisting of either: a PDF file containing the essay and an R- or Rmd-file with all the commands necessary for the analysis, or a PDF file generated using RMarkdown with the essay and all necessary commands and results. Each essay should consist of 1 a short introduction, 2 a description and motivation of the data and methods used (approximately 25% of the essay), 3 the analysis including necessary and tables (approximately 35%), and 4 an interpretation and conclusion (approximately 40%). Everything needs to be properly referenced.

28 Project 1: practicalities A good starting point for references is probably: Best is to make a separate Markdown file for the analysis required for the assignments, which can be copy/pasted and then edited from the lab sheets. Recommendation: the deadline is 17 October, 1 pm, but you should have everything now to do the assignment, so get this out of the way before other modules give assignments.

STAT 113: Statistics and Society Ellen Gundlach, Purdue University. (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e)

STAT 113: Statistics and Society Ellen Gundlach, Purdue University. (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e) STAT 113: Statistics and Society Ellen Gundlach, Purdue University (Chapters refer to Moore and Notz, Statistics: Concepts and Controversies, 8e) Learning Objectives for Exam 1: Unit 1, Part 1: Population

More information

Technical Reports. MCG 4340 Mechanical Engineering Laboratory Manual

Technical Reports. MCG 4340 Mechanical Engineering Laboratory Manual Technical Reports MCG 4340 Mechanical Engineering Laboratory Manual Objective: The objective of this document is to provide guidelines for writing engineering reports in general and the MCG 4340 formal

More information

Publishing Your Research in Peer-Reviewed Journals: The Basics of Writing a Good Manuscript.

Publishing Your Research in Peer-Reviewed Journals: The Basics of Writing a Good Manuscript. Publishing Your Research in Peer-Reviewed Journals: The Basics of Writing a Good Manuscript The Main Points Strive for written language perfection Expect to be rejected Make changes and resubmit What is

More information

Author Guidelines for Paper (Oral) or Extended Abstract (Poster) Preparation. June 17-21, 2018, McGill University, Montreal, QC, Canada

Author Guidelines for Paper (Oral) or Extended Abstract (Poster) Preparation. June 17-21, 2018, McGill University, Montreal, QC, Canada Author Guidelines for Paper (Oral) or Extended Abstract (Poster) Preparation June 17-21, 2018, McGill University, Montreal, QC, Canada PAPERS (optional to accompany oral presentations) (please go to page

More information

Statistics for Engineers

Statistics for Engineers Statistics for Engineers ChE 4C3 and 6C3 Kevin Dunn, 2013 kevin.dunn@mcmaster.ca http://learnche.mcmaster.ca/4c3 Overall revision number: 19 (January 2013) 1 Copyright, sharing, and attribution notice

More information

AWT Guidelines for Speakers

AWT Guidelines for Speakers AWT Guidelines for Speakers The guidelines listed below were developed to preserve the integrity of the educational experience and provide the best learning environment for our attendees. The educational

More information

Package colorpatch. June 10, 2017

Package colorpatch. June 10, 2017 Type Package Package colorpatch June 10, 2017 Title Optimized Rendering of Fold Changes and Confidence s Shows color patches for encoding fold changes (e.g. log ratios) together with confidence values

More information

GUIDELINES TO AUTHORS

GUIDELINES TO AUTHORS GUIDELINES TO AUTHORS EUROSTAT REVIEW OF NATIONAL ACCOUNTS (EURONA) February 2017 i TABLE OF CONTENTS 1. Types... 1 2. Form... 2 3. Principles... 5 Annex 1: Scope Grid... 7 ii Summary EURONA is a semi-annual,

More information

SAMPLE APA LITERATURE REVIEW PAPER

SAMPLE APA LITERATURE REVIEW PAPER page 1 / 5 page 2 / 5 sample apa literature review pdf Sample APA Papers: Literature Review This section offers a sample literature review, written by an undergraduate psychology student at Purdue University.

More information

ggplot and ColorBrewer Nice plots with R November 30, 2015

ggplot and ColorBrewer Nice plots with R November 30, 2015 ggplot and ColorBrewer Nice plots with R November 30, 2015 ggplot ggplot2 ggplot is an advanced plotting system for R. The current version is ggplot2 (http://ggplot2.org/). It is not in the base installation

More information

Writing Style Guide of the Geography Earth Science Department Shippensburg University

Writing Style Guide of the Geography Earth Science Department Shippensburg University Writing Style Guide of the Geography Earth Science Department Shippensburg University By Geography-Earth Science Department Faculty February 11, 2015 DRAFT Table of Contents Section Page Introduction:

More information

THE OPERATION OF A CATHODE RAY TUBE

THE OPERATION OF A CATHODE RAY TUBE THE OPERATION OF A CATHODE RAY TUBE OBJECT: To acquaint the student with the operation of a cathode ray tube, and to study the effect of varying potential differences on accelerated electrons. THEORY:

More information

Instructions to authors

Instructions to authors Instructions to authors General Instructions Quartär publishes Original articles, Review articles, Short notes, and Book reviews. All manuscripts are subject to peer review. Original articles describe

More information

Graphics I Or Making things pretty in R.

Graphics I Or Making things pretty in R. Graphics I Or Making things pretty in R rebecca.smith@kcl.ac.uk In this session See the range of options for graphics in R Be able to use basic graphics Make clear, attractive graphs Highlight some useful

More information

Writing a Scientific Research Paper. Abstract. on the structural features of the paper. However, it also includes minor details concerning style

Writing a Scientific Research Paper. Abstract. on the structural features of the paper. However, it also includes minor details concerning style Feihong Rodell Ms. Hanson Advanced Composition 24 March 2015 Writing a Scientific Research Paper Abstract This paper talks about writing scientific research papers. Most of the information is based on

More information

CS101 Final term solved paper Question No: 1 ( Marks: 1 ) - Please choose one ---------- was known as mill in Analytical engine. Memory Processor Monitor Mouse Ref: An arithmetical unit (the "mill") would

More information

Thesis and Dissertation Handbook

Thesis and Dissertation Handbook Indiana State University College of Graduate and Professional Studies Thesis and Dissertation Handbook Handbook Policies The style selected by the candidate should conform to the standards of the candidate

More information

INSTRUCTIONS TO THE AUTHORS FOR PUBLICATION IN BJ KINES-NATIONAL JOURNAL OF BASIC & APPLIED SCIENCE

INSTRUCTIONS TO THE AUTHORS FOR PUBLICATION IN BJ KINES-NATIONAL JOURNAL OF BASIC & APPLIED SCIENCE INSTRUCTIONS TO THE AUTHORS FOR PUBLICATION IN BJ KINES-NATIONAL JOURNAL OF BASIC & APPLIED SCIENCE BJ Kines-National Journal of Basic & Applied Science is a biannually (June Dec) publication of the B.

More information

Fitt s Law Study Report Amia Oberai

Fitt s Law Study Report Amia Oberai Fitt s Law Study Report Amia Oberai Overview of the study The aim of this study was to investigate the effect of different music genres and tempos on people s pointing interactions. 5 participants took

More information

JNN. Instructions for Authors. I. General policy. II. Manuscript Preparation

JNN. Instructions for Authors. I. General policy. II. Manuscript Preparation pissn 2635-425X eissn 2635-43570 http://www.j-nn.org I. General policy The Journal of Neurosonology and Neuroimaging (J Neurosonol Neuroimag, JNN) is a regular academic journal of Korean Society of Neurosonology,

More information

PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity

PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity PHY221 Lab 1 Discovering Motion: Introduction to Logger Pro and the Motion Detector; Motion with Constant Velocity Print Your Name Print Your Partners' Names Instructions August 31, 2016 Before lab, read

More information

NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting

NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting Compound Action Potential Due: Tuesday, October 6th, 2015 Goals Become comfortable reading data into Matlab from several common formats

More information

American Chemical Society Publication Guidelines

American Chemical Society Publication Guidelines American Chemical Society Publication Guidelines TITLE. The title should accurately, clearly, and concisely reflect the emphasis and content of the paper. The title must be brief and grammatically correct

More information

2018 MusiCounts TD Community Music Program

2018 MusiCounts TD Community Music Program 2018 MusiCounts TD Community Music Program BEFORE YOU BEGIN Contact Informa on Please keep in mind, the community music program applying must assume responsibility for owning any instruments received via

More information

Guidelines for DD&R Summary Preparation

Guidelines for DD&R Summary Preparation INTRODUCTION Guidelines for DD&R Summary Preparation These guidelines are intended to assist you with preparation of your electronic camera-ready summary. Please understand that ANS will not edit or proofread

More information

THE OPERATION OF A CATHODE RAY TUBE

THE OPERATION OF A CATHODE RAY TUBE THE OPERATION OF A CATHODE RAY TUBE OBJECT: To acquaint the student with the operation of a cathode ray tube, and to study the effect of varying potential differences on accelerated electrons. THEORY:

More information

AP Statistics Sampling. Sampling Exercise (adapted from a document from the NCSSM Leadership Institute, July 2000).

AP Statistics Sampling. Sampling Exercise (adapted from a document from the NCSSM Leadership Institute, July 2000). AP Statistics Sampling Name Sampling Exercise (adapted from a document from the NCSSM Leadership Institute, July 2000). Problem: A farmer has just cleared a field for corn that can be divided into 100

More information

AP Statistics Sec 5.1: An Exercise in Sampling: The Corn Field

AP Statistics Sec 5.1: An Exercise in Sampling: The Corn Field AP Statistics Sec.: An Exercise in Sampling: The Corn Field Name: A farmer has planted a new field for corn. It is a rectangular plot of land with a river that runs along the right side of the field. The

More information

Manuscript Preparation Guidelines

Manuscript Preparation Guidelines Journal of Homeland Security and Emergency Management Manuscript Preparation Guidelines This document provides authors with details on policy, copyediting, formatting, and layout requirements pertaining

More information

Critical Thinking 4.2 First steps in analysis Overcoming the natural attitude Acknowledging the limitations of perception

Critical Thinking 4.2 First steps in analysis Overcoming the natural attitude Acknowledging the limitations of perception 4.2.1. Overcoming the natural attitude The term natural attitude was used by the philosopher Alfred Schütz to describe the practical, common-sense approach that we all adopt in our daily lives. We assume

More information

Lab experience 1: Introduction to LabView

Lab experience 1: Introduction to LabView Lab experience 1: Introduction to LabView LabView is software for the real-time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because

More information

Checklist for Using LIBRA with Study Participants < Copy for Reader

Checklist for Using LIBRA with Study Participants <  Copy for Reader Checklist for Using LIBRA with Study Participants Copy for Reader There are several steps to complete. (1) Create your new account. (2) Choose a reading genre. (3)

More information

Eigenfactor : Does the Principle of Repeated Improvement Result in Better Journal. Impact Estimates than Raw Citation Counts?

Eigenfactor : Does the Principle of Repeated Improvement Result in Better Journal. Impact Estimates than Raw Citation Counts? Eigenfactor : Does the Principle of Repeated Improvement Result in Better Journal Impact Estimates than Raw Citation Counts? Philip M. Davis Department of Communication 336 Kennedy Hall Cornell University,

More information

Business Intelligence & Process Modelling

Business Intelligence & Process Modelling Business Intelligence & Process Modelling Frank Takes Universiteit Leiden Lecture 7 Process Modelling & Petri nets BIPM Lecture 7 Process Modelling & Petri nets 1 / 56 Recap Business Intelligence: anything

More information

The Economic Aspects of Global Warming and Climate Changes

The Economic Aspects of Global Warming and Climate Changes University of Houston-Victoria School of Business Administration Econ 6367 Global Economics Term paper / Case Study The Economic Aspects of Global Warming and Climate Changes 1 CASE ASSIGNMENT Climate

More information

Proceedings of the Third International DERIVE/TI-92 Conference

Proceedings of the Third International DERIVE/TI-92 Conference Description of the TI-92 Plus Module Doing Advanced Mathematics with the TI-92 Plus Module Carl Leinbach Gettysburg College Bert Waits Ohio State University leinbach@cs.gettysburg.edu waitsb@math.ohio-state.edu

More information

Douglas D. Reynolds UNLV UNIVERSITY OF NEVADA LAS VEGAS CENTER FOR MECHANICAL & ENVIRONMENTAL SYSTEMS TECHNOLOGY

Douglas D. Reynolds UNLV UNIVERSITY OF NEVADA LAS VEGAS CENTER FOR MECHANICAL & ENVIRONMENTAL SYSTEMS TECHNOLOGY Department of Mechanical Engineering 4505 S. Maryland Parkway Box 454040 Las Vegas, NV 89154-4040 (702) 895-3807 FAX: (702) 895-4677 CENTER FOR MECHANICAL & ENVIRONMENTAL SYSTEMS TECHNOLOGY Howard R. Hughes

More information

BJCP: Instructions to Authors. Original papers

BJCP: Instructions to Authors. Original papers BJCP: Instructions to Authors Original papers Preparing and submitting a manuscript A recent issue of the Journal is a good guide to style. Manuscript documents should be typed in double spacing and should

More information

Evaluation of Serial Periodic, Multi-Variable Data Visualizations

Evaluation of Serial Periodic, Multi-Variable Data Visualizations Evaluation of Serial Periodic, Multi-Variable Data Visualizations Alexander Mosolov 13705 Valley Oak Circle Rockville, MD 20850 (301) 340-0613 AVMosolov@aol.com Benjamin B. Bederson i Computer Science

More information

USER MANUAL FOR DDT 2D. Introduction. Installation. Getting Started. Danley Design Tool 2d. Welcome to the Danley Design Tool 2D program.

USER MANUAL FOR DDT 2D. Introduction. Installation. Getting Started. Danley Design Tool 2d. Welcome to the Danley Design Tool 2D program. USER MANUAL FOR DDT 2D ( VERSION 1.8) Welcome to the Danley Design Tool 2D program. Introduction DDT2D is a very powerful tool that lets the user visualize how sound propagates from loudspeakers, including

More information

INSTRUCTIONS FOR AUTHORS CONTRIBUTIONS TO JOURNAL EGRSE VERION A4, ONE COLUMN LANDSCAPE!!!

INSTRUCTIONS FOR AUTHORS CONTRIBUTIONS TO JOURNAL EGRSE VERION A4, ONE COLUMN LANDSCAPE!!! 1 INSTRUCTIONS FOR AUTHORS CONTRIBUTIONS TO JOURNAL EGRSE VERION A4, ONE COLUMN LANDSCAPE!!! The paper should be submitted in digital format (CD, DVD, or email), as doc and pdf. Editors of EGRSE will edit

More information

Frequencies. Chapter 2. Descriptive statistics and charts

Frequencies. Chapter 2. Descriptive statistics and charts An analyst usually does not concentrate on each individual data values but would like to have a whole picture of how the variables distributed. In this chapter, we will introduce some tools to tabulate

More information

-Not for Publication- Online Appendix to Telecracy: Testing for Channels of Persuasion

-Not for Publication- Online Appendix to Telecracy: Testing for Channels of Persuasion -Not for Publication- Online Appendix to Telecracy: Testing for Channels of Persuasion BY GUGLIELMO BARONE FRANCESCO D ACUNTO GAIA NARCISO* * Barone is at the Bank of Italy and RCEA. (e-mail: guglielmo.barone@bancaditalia.it)

More information

Bite Size Brownies. Designed by: Jonathan Thompson George Mason University, COMPLETE Math

Bite Size Brownies. Designed by: Jonathan Thompson George Mason University, COMPLETE Math Bite Size Brownies Designed by: Jonathan Thompson George Mason University, COMPLETE Math The Task Mr. Brown E. Pan recently opened a new business making brownies called The Brown E. Pan. On his first day

More information

NETFLIX MOVIE RATING ANALYSIS

NETFLIX MOVIE RATING ANALYSIS NETFLIX MOVIE RATING ANALYSIS Danny Dean EXECUTIVE SUMMARY Perhaps only a few us have wondered whether or not the number words in a movie s title could be linked to its success. You may question the relevance

More information

University of Essex Policy on Thesis Submission, Deposit and Retention

University of Essex Policy on Thesis Submission, Deposit and Retention University of Essex Policy on Thesis Submission, Deposit and Retention 1. Notice of Intention to Submit (Approval of Title) Students are required to give the Postgraduate Research Education Team at least

More information

CPSC 121: Models of Computation. Module 1: Propositional Logic

CPSC 121: Models of Computation. Module 1: Propositional Logic CPSC 121: Models of Computation Module 1: Propositional Logic Module 1: Propositional Logic By the start of the class, you should be able to: Translate back and forth between simple natural language statements

More information

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual ORM0022 EHPC210 Universal Controller Operation Manual Revision 1 EHPC210 Universal Controller Operation Manual Associated Documentation... 4 Electrical Interface... 4 Power Supply... 4 Solenoid Outputs...

More information

The APA Style Converter: A Web-based interface for converting articles to APA style for publication

The APA Style Converter: A Web-based interface for converting articles to APA style for publication Behavior Research Methods 2005, 37 (2), 219-223 The APA Style Converter: A Web-based interface for converting articles to APA style for publication PING LI and KRYSTAL CUNNINGHAM University of Richmond,

More information

MATH& 146 Lesson 11. Section 1.6 Categorical Data

MATH& 146 Lesson 11. Section 1.6 Categorical Data MATH& 146 Lesson 11 Section 1.6 Categorical Data 1 Frequency The first step to organizing categorical data is to count the number of data values there are in each category of interest. We can organize

More information

Labelling. Friday 18th May. Goldsmiths, University of London. Bayesian Model Selection for Harmonic. Labelling. Christophe Rhodes.

Labelling. Friday 18th May. Goldsmiths, University of London. Bayesian Model Selection for Harmonic. Labelling. Christophe Rhodes. Selection Bayesian Goldsmiths, University of London Friday 18th May Selection 1 Selection 2 3 4 Selection The task: identifying chords and assigning harmonic labels in popular music. currently to MIDI

More information

LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution. A. Plotting a GM Plateau. This lab will have two sections, A and B.

LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution. A. Plotting a GM Plateau. This lab will have two sections, A and B. LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution This lab will have two sections, A and B. Students are supposed to write separate lab reports on section A and B, and submit the

More information

Guidelines for Writing Seminar Papers and Theses

Guidelines for Writing Seminar Papers and Theses Guidelines for Writing Seminar Papers and Theses Institute for Financial Markets Page 1 Topic Selection and Planning Core of a scientific thesis is (at least) one research problem. Formulate hypotheses.

More information

08/2018 Franz Steiner Verlag

08/2018 Franz Steiner Verlag Guidelines for Authors of Journal Articles 08/2018 Franz Steiner Verlag Introductory Notes Before your manuscript is submitted to the publisher for typesetting, please make sure that content and language

More information

Viewers and Voters: Attitudes to television coverage of the 2005 General Election

Viewers and Voters: Attitudes to television coverage of the 2005 General Election Viewers and Voters: Attitudes to television coverage of the 2005 General Election Research Study conducted by ICM Research on behalf of Ofcom Please note that figures for Five and Sky News in Table 2 (Perceptions

More information

BJCP: Instructions to Authors. Reviews

BJCP: Instructions to Authors. Reviews BJCP: Instructions to Authors Reviews Review articles on a wide range of topics appear regularly in the Journal. Articles may be unsolicited, or may be commissioned by the Reviews Editor. Authors wishing

More information

COMP Test on Psychology 320 Check on Mastery of Prerequisites

COMP Test on Psychology 320 Check on Mastery of Prerequisites COMP Test on Psychology 320 Check on Mastery of Prerequisites This test is designed to provide you and your instructor with information on your mastery of the basic content of Psychology 320. The results

More information

Background Statement for SEMI Draft Document 4759A NEW STANDARD: TEST METHOD OF PERCEPTUAL ANGLE FOR OLED DISPLAYS

Background Statement for SEMI Draft Document 4759A NEW STANDARD: TEST METHOD OF PERCEPTUAL ANGLE FOR OLED DISPLAYS Background Statement for SEMI Draft Document 4759A NEW STANDARD: TEST METOD OF PERCEPTUAL ANGLE FOR OLED DISPLAYS Note: This background statement is not part of the balloted item. It is provided solely

More information

Formatting Instructions for the AAAI Fall Symposium on Advances in Cognitive Systems

Formatting Instructions for the AAAI Fall Symposium on Advances in Cognitive Systems Advances in Cognitive Systems 1 (2011) 1-11 Submitted 6/2011; published 10/2011 Formatting Instructions for the AAAI Fall Symposium on Advances in Cognitive Systems Pat Langley Glen Hunt Computing Science

More information

IMDB Movie Review Analysis

IMDB Movie Review Analysis IMDB Movie Review Analysis IST565-Data Mining Professor Jonathan Fox By Daniel Hanks Jr Executive Summary The movie industry is an extremely competitive industry in a variety of ways. Not only are movie

More information

LabView Exercises: Part II

LabView Exercises: Part II Physics 3100 Electronics, Fall 2008, Digital Circuits 1 LabView Exercises: Part II The working VIs should be handed in to the TA at the end of the lab. Using LabView for Calculations and Simulations LabView

More information

ROCK COUNTY 4-H RECORD BOOK GUIDELINES YOUR 4-H RECORD BOOK. Green 4-H Member Yearly Plan and Record cover Information Page

ROCK COUNTY 4-H RECORD BOOK GUIDELINES YOUR 4-H RECORD BOOK. Green 4-H Member Yearly Plan and Record cover Information Page ROCK COUNTY 4-H RECORD BOOK GUIDELINES YOUR 4-H RECORD BOOK MUST have: (Check each item when completed) Green 4-H Member Yearly Plan and Record cover Information Page Club Activity Sheet County/Other Activity

More information

Summer Training Project Report Format

Summer Training Project Report Format Summer Training Project Report Format A MANUAL FOR PREPARATION OF INDUSTRIAL SUMMER TRAINING REPORT CONTENTS 1. GENERAL 2. NUMBER OF COPIES TO BE SUBMITTED 3. SIZE OF PROJECT REPORT 4. ARRANGEMENT OF CONTENTS

More information

GUIDELINES FOR PREPARATION OF THESIS AND SYNOPSIS

GUIDELINES FOR PREPARATION OF THESIS AND SYNOPSIS GUIDELINES FOR PREPARATION OF THESIS AND SYNOPSIS APJ ABDUL KALAM TECHNOLOGICAL UNIVERSITY THIRUVANANTHAPURAM 1 GUIDELINES FOR THESIS PREPARATION 1. PREAMBLE 2. ORGANISATION OF THESIS 3. THESIS FORMAT

More information

Algebra I Module 2 Lessons 1 19

Algebra I Module 2 Lessons 1 19 Eureka Math 2015 2016 Algebra I Module 2 Lessons 1 19 Eureka Math, Published by the non-profit Great Minds. Copyright 2015 Great Minds. No part of this work may be reproduced, distributed, modified, sold,

More information

Author Guidelines Tier 1 Articles

Author Guidelines Tier 1 Articles Tier Articles Table of Contents. Tier Article Types... 3 Original Research Article... 3 Clinical Trial Article... 3 Hypothesis and Theory Article... 3 Perspective Article... 3 Methods Article... 3 Mini

More information

Lesson 25: Solving Problems in Two Ways Rates and Algebra

Lesson 25: Solving Problems in Two Ways Rates and Algebra : Solving Problems in Two Ways Rates and Algebra Student Outcomes Students investigate a problem that can be solved by reasoning quantitatively and by creating equations in one variable. They compare the

More information

THESIS GUIDE Preparing a Thesis or Dissertation

THESIS GUIDE Preparing a Thesis or Dissertation THESIS GUIDE Preparing a Thesis or Dissertation Congratulations! You have arrived at an important step in the pursuit of your graduate degree the writing of your thesis or dissertation. Your scholarly

More information

Physical description (300)

Physical description (300) Physical description (300) cm And mm. were abbreviations in AACR; in RDA, they are considered symbols and therefore have no period at the end (i.e., cm and mm ). Add a period to the end of the 300 field

More information

2. Document setup: The full physical page size including all margins will be 148mm x 210mm The five sets of margins

2. Document setup: The full physical page size including all margins will be 148mm x 210mm The five sets of margins Submission Guidelines Please use this section as a guideline for preparing your manuscript. This set of guidelines (updated November 2007) replaces all previously issued guidelines. Please ensure that

More information

Editorial Requirements CFM 2016

Editorial Requirements CFM 2016 Article length and format Editorial Requirements CFM 2016 All submitted manuscripts should not exceed the recommended size in accordance with established rules Paper should be about 20,000 (with spaces)

More information

MATLAB Basics 6 plotting

MATLAB Basics 6 plotting 1 MATLAB Basics 6 plotting Anthony Rossiter University of Sheffield For a neat organisation of all videos and resources http://controleducation.group.shef.ac.uk/indexwebbook.html Introduction 2 1. The

More information

FA- ACTIVITY-PROJECT. All the three assignment questions are compulsory. 1. Do all the projects in a scrap book.

FA- ACTIVITY-PROJECT. All the three assignment questions are compulsory. 1. Do all the projects in a scrap book. Summer Assignment 2015 Subject: Social Studies Class: III LEARN & WRITE TWO TIMES Q/A & EXERCISES OF LS. 1 & LS. 2 MAKE AN EARTH DANGLER (PAGE NO. 14) Class: IV LEARN & WRITE 2 TIMES Q/A & EXERCISES OF

More information

A MANUAL FOR PREPARATION OF THESIS

A MANUAL FOR PREPARATION OF THESIS UNIVERSITY OF TECHNOLOGY AND ARTS OF BYUMBA A MANUAL FOR PREPARATION OF THESIS PROF. DR. ASHRAPH SULAIMAN DEPUTY VICE CHANCELLOR ACADEMICS AND RESEARCH FEB 2016 Page 0 CONTENTS Sl. No. Description Page

More information

AUTHOR SUBMISSION GUIDELINES

AUTHOR SUBMISSION GUIDELINES AUTHOR SUBMISSION GUIDELINES The following author guidelines apply to all those who submit an article to the International Journal of Indigenous Health (IJIH). For the current Call for Papers, prospective

More information

Apa Format Example Paper Template

Apa Format Example Paper Template APA FORMAT EXAMPLE PAPER TEMPLATE PDF - Are you looking for apa format example paper template Books? Now, you will be happy that at this time apa format example paper template PDF is available at our online

More information

Homework Packet Week #5 All problems with answers or work are examples.

Homework Packet Week #5 All problems with answers or work are examples. Lesson 8.1 Construct the graphical display for each given data set. Describe the distribution of the data. 1. Construct a box-and-whisker plot to display the number of miles from school that a number of

More information

Journal of the American Helicopter Society

Journal of the American Helicopter Society Journal of the American Helicopter Society AHS Journal Manuscript Specifications (For final submissions to the Journal) Length Final manuscripts for the Journal must be a concise as possible and, unless

More information

Why visualize data? Advanced GDA and Software: Multivariate approaches, Interactive Graphics, Mondrian, iplots and R. German Bundestagswahl 2005

Why visualize data? Advanced GDA and Software: Multivariate approaches, Interactive Graphics, Mondrian, iplots and R. German Bundestagswahl 2005 Advanced GDA and Software: Multivariate approaches, Interactive Graphics, Mondrian, iplots and R Why visualize data? Looking for global trends overall structure Looking for local features data quality

More information

REQUIREMENTS FOR PAPERS SUBMITTED TO A CSCE CONFERENCE

REQUIREMENTS FOR PAPERS SUBMITTED TO A CSCE CONFERENCE Building Tomorrow s Society Bâtir la Société de Demain Fredericton, Canada June 13 June 16, 2018/ Juin 13 Juin 16, 2018 REQUIREMENTS FOR PAPERS SUBMITTED TO A CSCE CONFERENCE Newton, Linda A. 1,2 1 Carleton

More information

Authors Manuscript Guidelines

Authors Manuscript Guidelines Authors Manuscript Guidelines 1. GENERAL 1.1 PROCEEDINGS All delegates are supplied with a set of Conference Proceedings either print or electronic format. It is our aim to ensure that these Proceedings

More information

Time Domain Simulations

Time Domain Simulations Accuracy of the Computational Experiments Called Mike Steinberger Lead Architect Serial Channel Products SiSoft Time Domain Simulations Evaluation vs. Experimentation We re used to thinking of results

More information

Manuscript template: full title must be in sentence case

Manuscript template: full title must be in sentence case Turk J Elec Eng & Comp Sci () : c TÜBİTAK doi:./elk- Manuscript template: full title must be in sentence case First AUTHOR, Second AUTHOR, First Department, First Faculty, First University, First City,

More information

General Certificate of Secondary Education Foundation Tier

General Certificate of Secondary Education Foundation Tier Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Pages 3 Mark General Certificate of Secondary Education Foundation Tier 4 5 6 7 Mathematics (Linear) B Paper 1

More information

Double space throughout the manuscript, in text and charts, quotations and headings.

Double space throughout the manuscript, in text and charts, quotations and headings. Guidelines for Authors Davis Publications, Inc. is an international publisher of art education resource books and textbooks. Our books serve as references and instructional resources for teachers and students

More information

WILKES HONORS COLLEGE of FLORIDA ATLANTIC UNIVERSITY REQUIREMENTS AND GUIDELINES FOR HONORS THESES

WILKES HONORS COLLEGE of FLORIDA ATLANTIC UNIVERSITY REQUIREMENTS AND GUIDELINES FOR HONORS THESES WILKES HONORS COLLEGE of FLORIDA ATLANTIC UNIVERSITY REQUIREMENTS AND GUIDELINES FOR HONORS THESES updated: 4-23-2013 1 REQUIREMENTS AND GUIDELINES FOR WILKES HONORS COLLEGE THESES The following are the

More information

Relationships Between Quantitative Variables

Relationships Between Quantitative Variables Chapter 5 Relationships Between Quantitative Variables Three Tools we will use Scatterplot, a two-dimensional graph of data values Correlation, a statistic that measures the strength and direction of a

More information

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc.

Analyzing Modulated Signals with the V93000 Signal Analyzer Tool. Joe Kelly, Verigy, Inc. Analyzing Modulated Signals with the V93000 Signal Analyzer Tool Joe Kelly, Verigy, Inc. Abstract The Signal Analyzer Tool contained within the SmarTest software on the V93000 is a versatile graphical

More information

Title of the Project

Title of the Project A Project Report on Title of the Project Directorate of Distance Education Meerut Submitted for partial fulfillment for award of the degree in Bachelor of Business administration BY STUDENT Name- Enrollment

More information

THESIS/DISSERTATION Submission REVIEW Checklist Office of Graduate Studies

THESIS/DISSERTATION Submission REVIEW Checklist Office of Graduate Studies THESIS/DISSERTATION Submission REVIEW Checklist Office of Graduate Studies Student Name: Department: Date of Final Oral: Student Phone & E-mail: ID Number: Major: Anticipated Date of Graduation: Enclosed

More information

Moving on from MSTAT. March The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID

Moving on from MSTAT. March The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Moving on from MSTAT March 2000 The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 2. Moving from MSTAT to Genstat 4 2.1 Analysis

More information

Technical Report Writing

Technical Report Writing Technical Writing Style and Format 1 Technical Report Writing Writing Style and Format Requirements Appearance 1. Word process the body of the report, from the title page through the conclusions. 2. Figures

More information

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in ADOBE PHOTOSHOP 4.0 FUNDAMENTALS A mask works like a rubylith or frisket, covering part of the image and selecting the rest. In Adobe Photoshop, you can create masks using the selection tools or by painting

More information

GUIDELINES FOR AUTHORS. Technical requirements

GUIDELINES FOR AUTHORS. Technical requirements GUIDELINES FOR AUTHORS Technical requirements The manuscript submitted for publication should be in Microsoft Office Word (Ver. 95+) with maximum up to 8,000 words in length (with spaces), printed in font

More information

HOW WE KNOW WHAT ISN T SO: COGNITIVE SCIENCE AND MIND TRAPS

HOW WE KNOW WHAT ISN T SO: COGNITIVE SCIENCE AND MIND TRAPS HOW WE KNOW WHAT ISN T SO: COGNITIVE SCIENCE AND MIND TRAPS Jean-Marc Fix, FSA, MAAA UW seminar 2012 COGNITIVE SCIENCE How do we make judgments? Are there systematic issues with our decision making process?

More information

ECE438 - Laboratory 1: Discrete and Continuous-Time Signals

ECE438 - Laboratory 1: Discrete and Continuous-Time Signals Purdue University: ECE438 - Digital Signal Processing with Applications 1 ECE438 - Laboratory 1: Discrete and Continuous-Time Signals By Prof. Charles Bouman and Prof. Mireille Boutin Fall 2015 1 Introduction

More information

Journal of Equipment Lease Financing Author Guidelines

Journal of Equipment Lease Financing Author Guidelines Journal of Equipment Lease Financing Author Guidelines Journal of Equipment Lease Financing Author Guidelines Published by the Equipment Leasing & Finance Foundation Updated November 2017 I. JOURNAL POLICY

More information

There is an activity based around book production available for children on the Gothic for England website which you may find useful.

There is an activity based around book production available for children on the Gothic for England website which you may find useful. WRITING AND PRINTING Resource Box NOTES FOR TEACHERS These notes are intended primarily for KS2 teachers and for teachers of History (Britain 1066-1500) at KS3. The notes are divided into three sections

More information

What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography

What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography UTM Library What is Endnote? A bibliographical management software package designed to : Organize bibliographic references Create a bibliography What is Endnote? A bibliographical management software package

More information

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 6) Advanced Data Visualization with Tableau Objective: Learn how to use Tableau s advanced data visualization tools Learning Outcomes:

More information