DATA VISUALIZATION WITH GGPLOT2. Bar Plots

Size: px
Start display at page:

Download "DATA VISUALIZATION WITH GGPLOT2. Bar Plots"

Transcription

1 DATA VISUALIZATION WITH GGPLOT2 Bar Plots

2 Chapter Content Common pitfalls Best way to represent data

3 Bar plot Two types Absolute values Distribution

4 Mammalian sleep > str(sleep) 'data.frame': 76 obs. of 3 variables: $ vore : Factor w/ 4 levels "Carnivore","Herbivore",..: $ total: num $ rem : num NA NA.6...

5 Dynamite plot > d <- ggplot(sleep, aes(vore, total)) + scale_y_continuous("total sleep time (h)", limits = c(, 24), breaks = seq(, 24, 3), expand = c(, )) + scale_x_discrete("eating habits") + theme_classic() > d + stat_summary(fun.y = mean, geom = "bar", fill = "grey5") + stat_summary(fun.data = mean_sdl, mult = 1, geom = "errorbar", width =.2) Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

6 Individual data points > d + geom_point(alpha =.6, position = position_jitter(width =.2)) Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

7 errorbar > d + geom_point(alpha =.6, position = position_jitter(width =.2)) + stat_summary(fun.y = mean, geom = "point", fill = "red") + stat_summary(fun.data = mean_sdl, mult = 1, geom = "errorbar", width =.2, col = "red") Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

8 pointrange > d + geom_point(alpha =.6, position = position_jitter(width =.2)) + stat_summary(fun.data = mean_sdl, mult = 1, width =.2, col = "red") Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

9 Without data points > d + stat_summary(fun.y = mean, geom = "point") + stat_summary(fun.data = mean_sdl, mult = 1, geom = "errorbar", width =.2) Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

10 Total sleep time (h) Carnivore Herbivore Insectivore Omnivore Eating habits

11 DATA VISUALIZATION WITH GGPLOT2 Let s practice!

12 DATA VISUALIZATION WITH GGPLOT2 Pie Charts

13 Stacked bar chart > ggplot(mtcars, aes(x = factor(1), fill = factor(cyl))) + geom_bar(width = 1) 3 count 2 1 factor(cyl) factor(1)

14 pie chart > ggplot(mtcars, aes(x = factor(1), fill = factor(cyl))) + geom_bar(width = 1) > ggplot(mtcars, aes(x = factor(1), fill = factor(cyl))) + geom_bar(width = 1) + coord_polar(theta = "y") 3 3 count 2 1 factor(cyl) factor(1) factor(cyl) count 1 factor(1)

15 Parts-of-a-whole 3 factor(1) 1 1 factor(cyl) count

16 HairCol > HairCol Hair Sex Value fillin n nprop 1 Black Male 56 # Brown Male 143 #A Red Male 34 #E41A1C Blond Male 46 #FFFF Black Female 52 # Brown Female 143 #A Red Female 37 #E41A1C Blond Female 81 #FFFF

17 HairCol - Bar Charts > ggplot(haircol, aes(x = Hair, y = Value, fill = fillin)) + geom_bar(stat = "identity", position = "dodge") + facet_grid(. ~ Sex) + scale_fill_identity() + theme_classic() 15 Male Female Hard to reveal interesting trends Difference in total counts is unclear 1 Value 5 Black Brown Red Blond Black Brown Red Blond Hair

18 HairCol - Pie Charts > ggplot(haircol, aes(x = n/2, y = Value, fill = fillin, width = n)) + geom_bar(stat = "identity", position = "fill") + facet_grid(. ~ Sex) + scale_fill_identity() + coord_polar(theta = "y") + theme(...) Male Female angle, area, length mediocre encoding elements

19 Alternative > ggplot(haircol, aes(x = Sex, y = Value, fill = fillin, width = nprop)) + geom_bar(stat = "identity", position= "fill") + scale_y_continuous("proportion") + scale_x_discrete("", expand = c(, )) + scale_fill_identity() + coord_flip() + theme(...) Female Male Proportion

20 DATA VISUALIZATION WITH GGPLOT2 Let s practice!

21 DATA VISUALIZATION WITH GGPLOT2 Heat Maps

22 barley.s > head(barley.s, 15) variety site Grand Rapids Duluth University Farm Morris Crookston Waseca Grand Rapids Duluth University Farm Morris Crookston Waseca Grand Rapids Duluth University Farm

23 Variety Grand Rapids Duluth University Farm Morris Crookston Waseca Year yield

24 barley > head(barley, 15) yield variety year site University Farm Waseca Morris Crookston Grand Rapids Duluth University Farm Waseca Morris Crookston Grand Rapids Duluth University Farm Waseca Morris

25 Variety Grand Rapids Duluth University Farm Morris Crookston Waseca Year yield

26 Variety Grand Rapids Duluth University Farm Morris Crookston Waseca Yield (bushels/acre) Year

27 7 Grand Rapids Duluth University Farm Morris Crookston Waseca 6 Yield (bushels/acre) Variety Year

28 7 6 5 Yield (bushels/acre) 4 3 Site Waseca Crookston Morris University Farm Duluth Grand Rapids Year

29 7 6 5 Yield (bushels/acre) 4 3 Site Waseca Crookston Morris University Farm Duluth Grand Rapids Year

30 DATA VISUALIZATION WITH GGPLOT2 Let s practice!

Analyzing Categorical Data & Displaying Quantitative Data Section 1.1 & 1.2

Analyzing Categorical Data & Displaying Quantitative Data Section 1.1 & 1.2 Analyzing Categorical Data & Displaying Quantitative Data Section 1.1 & 1.2 Reference Text: The Practice of Statistics, Fourth Edition. Starnes, Yates, Moore Starter Problem Antoinette plays a lot of golf.

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/62-1: Data Visualization Multiple Views Dr. David Koop CIS 467, Spring 215 Visualization Evaluation More details about how studies are developed Use of eye tracking to evaluate visualizations Eye

More information

Chapter 18: Page 230

Chapter 18: Page 230 Chapter 18: Page 230 Chapter 18: Page 231 All animals depend on plants. Some animals eat plants for food. Other animals eat animals that eat the plants. Food webs are more realistic models of how energy

More information

Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides.

Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides. Acknowledgement: Author is indebted to Dr. Jennifer Kaplan, Dr. Parthanil Roy and Dr Ashoke Sinha for allowing him to use/edit many of their slides. Topic for this lecture 0Today s lecture s materials

More information

Teacher Workbooks. Cyber-Starters Animals Volume 2. Copyright 2006 Teachnology Publishing Company A Division of Teachnology, Inc.

Teacher Workbooks. Cyber-Starters Animals Volume 2. Copyright 2006 Teachnology Publishing Company A Division of Teachnology, Inc. Teacher Workbooks Cyber-Starters Animals Volume 2 Copyright 2006 Teachnology Publishing Company A Division of Teachnology, Inc. For additional information, visit us at www.teachnologypublishing.com Table

More information

LOOK AT THE PICTURE BELOW AND ANSWER THE FOLLOWING:

LOOK AT THE PICTURE BELOW AND ANSWER THE FOLLOWING: STATION A 1. What is the correct scientific name (sometimes called Latin name) of this animal? a. Raccoon b. Northern Raccoon c. Procyon lotor d. Ceryle alcyon 2. Is the following statement about this

More information

El Cerrito Sporting Goods Ira Sharenow January 7, 2019

El Cerrito Sporting Goods Ira Sharenow January 7, 2019 El Cerrito Sporting Goods Ira Sharenow January 7, 2019 R Markdown The goal of the analysis is to determine if any of the salespersons are performing exceptionally well or exceptionally poorly. In particular,

More information

Monitoring Population Trends of White-tailed Deer in Minnesota Marrett Grund, Farmland Wildlife Populations and Research Group

Monitoring Population Trends of White-tailed Deer in Minnesota Marrett Grund, Farmland Wildlife Populations and Research Group Monitoring Population Trends of White-tailed Deer in Minnesota - 2014 Marrett Grund, Farmland Wildlife Populations and Research Group INTRODUCTION White-tailed deer (Odocoileus virginianus) represent one

More information

Chapter 3 Displaying and Describing Categorical Data

Chapter 3 Displaying and Describing Categorical Data Chapter 3 Displaying and Describing Categorical Data Stats: Modeling the World Chapter 3 are often used to organize categorical data. Frequency tables display the category names and the of the number of

More information

UNITS 0 AND 1 REINFORCEMENT ACTIVITIES. 1 Write the questions: 2 Complete the table and draw and colour in the flag of the country it represents.

UNITS 0 AND 1 REINFORCEMENT ACTIVITIES. 1 Write the questions: 2 Complete the table and draw and colour in the flag of the country it represents. UNITS 0 AND 1 REINFORCEMENT ACTIVITIES 1 Write the questions: I m 9 years old.... I m from Scotland.... Yes, I can.... No, I can t.... 2 Complete the table and draw and colour in the flag of the country

More information

Chapter 2 - Frequency Distributions and Graphs

Chapter 2 - Frequency Distributions and Graphs - Frequency Distributions and Graphs 1. Which of the following does not need to be done when constructing a frequency distribution? A) select the number of classes desired B) find the range C) make the

More information

STAT 155 Introductory Statistics. Lecture 2-2: Displaying Distributions with Graphs

STAT 155 Introductory Statistics. Lecture 2-2: Displaying Distributions with Graphs The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STAT 155 Introductory Statistics Lecture 2-2: Displaying Distributions with Graphs 8/31/06 Lecture 2-2 1 Recall Data: Individuals Variables Categorical variables

More information

3rd GRADE MINIMUM CONTENTS UDI 2: FAUNIA. LIVING THINGS (6)

3rd GRADE MINIMUM CONTENTS UDI 2: FAUNIA. LIVING THINGS (6) 3rd GRADE MINIMUM CONTENTS UDI 2: FAUNIA. LIVING THINGS (6) LIVING AND NON-LIVING THINGS Living things are born, grow, reproduce, grow old, and die. People, plants and animals are all living things. Living

More information

What is the Serengeti? Pre-K Guidelines/ Examples of Child Behavior. Learning Objectives

What is the Serengeti? Pre-K Guidelines/ Examples of Child Behavior. Learning Objectives Pre-K Guidelines/ Examples of Child Behavior VI.B.1. Child observes, investigates, describes and discusses the characteristics of organisms. Describes color, size, and shape of organisms. Describes animals

More information

Science (1) 1 st Lesson

Science (1) 1 st Lesson Science (1) 1 st Lesson Aim: To discuss living things and their habitats the forest habitat, the underground habitat, the desert habitat, and water habitats what animals eat, the food chain, and introduce

More information

STAT 155 Introductory Statistics. Lecture 2: Displaying Distributions with Graphs

STAT 155 Introductory Statistics. Lecture 2: Displaying Distributions with Graphs The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STAT 155 Introductory Statistics Lecture 2: Displaying Distributions with Graphs 8/29/06 Lecture 2-1 1 Recall Statistics is the science of data. Collecting

More information

Run timing and morphology of steelhead kelts from the Situk River

Run timing and morphology of steelhead kelts from the Situk River Run timing and morphology of steelhead kelts from the Situk River Brian Marston Alaska Department of Fish and Game Division of Sport Fisheries Yakutat, Alaska brian.marston@alaska.gov 97-784-3222 1995

More information

Chapter 2 - Displaying and Describing Categorical Data

Chapter 2 - Displaying and Describing Categorical Data Chapter 2 - Displaying and Describing Categorical Data August 28, 2014 Exploratory Data Analysis - The use of graphs or numerical summaries (values) to describe the variables in a data set and the relation

More information

Chapter 3 - Displaying and Describing Categorical Data

Chapter 3 - Displaying and Describing Categorical Data Chapter 3 - Displaying and Describing Categorical Data August 25, 2010 Exploratory Data Analysis - The use of graphs or numerical summaries (values) to describe the variables in a data set and the relation

More information

Chapter 2 Displaying and Describing Categorical Data

Chapter 2 Displaying and Describing Categorical Data Chapter 2 Displaying and Describing Categorical Data Graphs for Categorical Variables Our concern will be two types of visual representations. Graphs for Categorical Variables Our concern will be two types

More information

Grolier Online Kids Feature Showcase Animals of Africa Teacher s Guide

Grolier Online Kids Feature Showcase Animals of Africa Teacher s Guide Grolier Online Kids Feature Showcase Animals of Africa Teacher s Guide Opening The continent of Africa is teeming with the kinds of animals that most people can only see in captivity. Lions, leopards,

More information

2018 Corn Grain Field Crop Trials Results

2018 Corn Grain Field Crop Trials Results Field Crop Trials Results Minnesota Agricultural Experiment Station and the College of Food, Agricultural and Natural Resource Sciences The Minnesota Corn Evaluation Program was conducted by the University

More information

Chapter 9: Hypothesis Testing for Comparing Population Parameters

Chapter 9: Hypothesis Testing for Comparing Population Parameters Chapter 9: Hypothesis Testing for Comparing Population Parameters Hypothesis testing can address many di erent types of questions. We are not restricted to looking at the estimated value of a single population

More information

Owls. Are these sentences fact or fiction? Tick the right box. Use the book for help. Owls are silent flyers. Owls are mostly nocturnal.

Owls. Are these sentences fact or fiction? Tick the right box. Use the book for help. Owls are silent flyers. Owls are mostly nocturnal. Owls Are these sentences fact or fiction? Tick the right box. Use the book for help. Fact Fiction Owls are silent flyers. Owls are mostly nocturnal. Ghost owls swoop down into gardens. Owls have an extra

More information

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES:

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES: Slide 1 Chapter 13: ANOVA for 2-way classifications (2 of 2) Fixed and Random factors, Model I, Model II, and Model III (mixed model) ANOVA Chapter 14: Unreplicated Factorial & Nested Designs Slide 2 HW

More information

Reshaping data in R. Duncan Golicher. December 9, 2008

Reshaping data in R. Duncan Golicher. December 9, 2008 Reshaping data in R Duncan Golicher December 9, 2008 One of the most frustrating and time consuming parts of statistical analysis is shuffling data into a format for analysis. No one enjoys changing data

More information

Population Parameters and Their Estimation. Uses of Survey Results. Population Terms. Why Estimate Population Parameters? Population Estimation Terms

Population Parameters and Their Estimation. Uses of Survey Results. Population Terms. Why Estimate Population Parameters? Population Estimation Terms Population Parameters and Their Estimation Data should be collected with a clear purpose in mind. Not only a clear purpose, but a clear idea as to the precise way in which they will be analysed so as to

More information

Chapter 20: Page 250

Chapter 20: Page 250 Chapter 20: Page 250 Chapter 20: Page 251 All organisms cause changes in the environment where they live. Some of these changes are detrimental to the organism or other organisms, whereas others are beneficial.

More information

Megan Dunmeyer, 2016!

Megan Dunmeyer, 2016! Megan Dunmeyer, 2016! Megan Dunmeyer, 2016! The Elephant!mammals!herbivores!calf!African!Indian!communicate!endangered!extinct Elephants are the biggest land animals! Elephants can be 9 11 feet tall and

More information

Diameter in cm. Bubble Number. Bubble Number Diameter in cm

Diameter in cm. Bubble Number. Bubble Number Diameter in cm Bubble lab Data Sheet Blow bubbles and measure the diameter to the nearest whole centimeter. Record in the tables below. Try to blow different sized bubbles. Name: Bubble Number Diameter in cm Bubble Number

More information

DATA SCIENCE SUMMER UNI VIENNA

DATA SCIENCE SUMMER UNI VIENNA Prerequisites - You have installed Tableau Desktop on your computer. Available here: http://www.tableau.com/academic/students - You have downloaded the data (athlete_events.csv) available here: https://www.kaggle.com/heesoo37/120-years-of-olympic-historyathletes-and-results

More information

Importance of Wave Height Measurement in Wave Solder Process Control

Importance of Wave Height Measurement in Wave Solder Process Control Importance of Wave Height Measurement in Wave Solder Process Control By: Patrick McWiggin, Technical Director, SolderStar Ltd It is still common place to simply capture temperature profile measurements

More information

Lab: Predator-Prey Simulation

Lab: Predator-Prey Simulation Lab: Predator-Prey Simulation A Simulation of Jackrabbit and Mountain Lion Interactions Name Biology Pd Background: During the 1920s, as the story goes, the people of the northern Arizona and southern

More information

Statistical Analyses on Roger Federer s Performances in 2013 and 2014 James Kong,

Statistical Analyses on Roger Federer s Performances in 2013 and 2014 James Kong, Statistical Analyses on Roger Federer s Performances in 2013 and 2014 James Kong, kong.james@berkeley.edu Introduction Tennis has become a global sport and I am a big fan of tennis. Since I played college

More information

2010-2014 www.d.umn.edu/cla/faculty/troufs/anthfood/aftexts.html#title 2010-2014 www.d.umn.edu/cla/faculty/troufs/anthfood/aftexts.html#title 2010-2014 www.d.umn.edu/cla/faculty/troufs/anthfood/aftexts.html#title

More information

Making the Most of Your Monitoring Using Macroinvertebrates

Making the Most of Your Monitoring Using Macroinvertebrates Making the Most of Your Monitoring Using Macroinvertebrates Benthic Macroinvertebrates What are they? Why are they important? Provide food for fish and other organisms Feed on algae, organic matter, and

More information

LOOK AT THE PICTURE BELOW AND ANSWER THE FOLLOWING:

LOOK AT THE PICTURE BELOW AND ANSWER THE FOLLOWING: STATION A 1. What is the correct scientific name (sometimes called Latin name) of this animal? a. Bobcat b. Lynx rufus c. Lynx canadensis d. Ceryle alcyon 2. Is the following statement about this animal

More information

Chapter 2: Visual Description of Data

Chapter 2: Visual Description of Data Chapter 2: Visual Description of Data El Mechry El Koudous Fordham University January 24, 2018 Meshry (Fordham University) Chapter 2 January 24, 2018 1 / 35 Introduction In this chapter we will cover:

More information

Outline. 1. Overview 2. Population 3. Flooding 4. Land Use 5. References. Overview

Outline. 1. Overview 2. Population 3. Flooding 4. Land Use 5. References. Overview Outline 1. Overview 2. Population 3. Flooding 4. Land Use 5. References Overview The two main rivers in the Cannon River watershed are the Cannon and Straight Rivers. The Cannon River originates in Shields

More information

A Shallow Dive into Deep Sea Data Sarah Solie and Arielle Fogel 7/18/2018

A Shallow Dive into Deep Sea Data Sarah Solie and Arielle Fogel 7/18/2018 A Shallow Dive into Deep Sea Data Sarah Solie and Arielle Fogel 7/18/2018 Introduction The datasets This data expedition will utilize the World Ocean Atlas (WOA) database to explore two deep sea physical

More information

Pedestrian and Bicycle Crashes

Pedestrian and Bicycle Crashes Pedestrian and Bicycle Crashes Pedestrian and Bicycles Overview Pedestrian-related crashes represent 3.6% of the total reported traffic crashes; however, they account for 11.1% of all traffic crash deaths.

More information

Spatial and Temporal Patterns of Pedestrian Crashes Along The Urbanization Gradient

Spatial and Temporal Patterns of Pedestrian Crashes Along The Urbanization Gradient Spatial and Temporal Patterns of Pedestrian Crashes Along The Urbanization Gradient Tram Truong, GISP GIS-T Conference Raleigh, NC April 4-7, 2016 Acknowledgement Trung Tran, PhD, GISP Northern Kentucky

More information

Figure 39. Yearly Trend in Death Rates for Drowning: NSW, Year

Figure 39. Yearly Trend in Death Rates for Drowning: NSW, Year 10.0 DROWNING 10.1 Deaths due to Drowning: The drowning death rate showed a statistically significant decrease between 199 and 1999 (Figure 39). Between 199 and 1999, 46 people died from drowning, at a

More information

Stats 2002: Probabilities for Wins and Losses of Online Gambling

Stats 2002: Probabilities for Wins and Losses of Online Gambling Abstract: Jennifer Mateja Andrea Scisinger Lindsay Lacher Stats 2002: Probabilities for Wins and Losses of Online Gambling The objective of this experiment is to determine whether online gambling is a

More information

PROVINCIAL AQUACULTURE DEVELOPMENT PROJECT LAO PDR SUPPORT FOR TECHNICAL SERVICES. Guidelines for Broodstock and Hatchery Management

PROVINCIAL AQUACULTURE DEVELOPMENT PROJECT LAO PDR SUPPORT FOR TECHNICAL SERVICES. Guidelines for Broodstock and Hatchery Management FI:DP/LAO/97/007 STS - Field Document No. 5 PROVINCIAL AQUACULTURE DEVELOPMENT PROJECT LAO PDR SUPPORT FOR TECHNICAL SERVICES Guidelines for Broodstock and Hatchery Management Based on the work of Francois

More information

EcoQuest Grades 1-2 Animals. Look for 2 Animals that are very different from each other:

EcoQuest Grades 1-2 Animals. Look for 2 Animals that are very different from each other: EcoQuest Grades 1-2 Animals. Look for 2 Animals that are very different from each other: 222 Harrington Way Worcester, MA 01604 (508) 929-2700 Fax: (508) 929-2700 www.ecotarium.org Animal #1: What kind

More information

Fisheries and Illinois Aquaculture Center

Fisheries and Illinois Aquaculture Center Southern Illinois University Carbondale OpenSIUC Publications Fisheries and Illinois Aquaculture Center 4-1982 The Cyclic Stocking of Parentals in a Farm Pond to Produce a Population of Male Bluegill x

More information

5 th Grade Science Pre-assessment Organisms & Environments Unit 5 KEY

5 th Grade Science Pre-assessment Organisms & Environments Unit 5 KEY 5 th Grade Science Pre-assessment Organisms & Environments Unit 5 KEY 1. Sun Grass Grasshopper Spider Bird Using the food chain above, how would a large decrease in the spider population affect the other

More information

Geom- Chpt. 8 Algebra Review Before the Chapter

Geom- Chpt. 8 Algebra Review Before the Chapter Geom- Chpt. 8 Algebra Review Before the Chapter Solving Quadratics- Using factoring and the Quadratic Formula Solve: 1. 2n 2 + 3n - 2 = 0 2. (3y + 2) (y + 3) = y + 14 3. x 2 13x = 32 1 Working with Radicals-

More information

Grade 2 Hands on Science Adaptations and Food Chains

Grade 2 Hands on Science Adaptations and Food Chains Grade 2 Hands on Science Adaptations and Food Chains Objectives: To compare and give examples of the ways living organisms depend on each other and on their environments. Describe and give examples of

More information

Atsuko YAMAGUCHI. Since the catches of these fish decrease as the waters, including those around western Kyushu and

Atsuko YAMAGUCHI. Since the catches of these fish decrease as the waters, including those around western Kyushu and Atsuko YAMAGUCHI distributions, feeding habits, reproductive behavior, off the coast of Nagasaki, western Kyushu. It is growth, migration, population structure, and other relatively large biological aspects

More information

Rachel and the TreeSchoolers Theme Song

Rachel and the TreeSchoolers Theme Song Theme Song I m Penny I m Simon I m Abacus Finch Chroma Chameleon Yo, I m Isaac Newt Abigail Nightingale The firefly, Hue Bongo (ha ha ha ha) And me Tomas, you ll love me We love Preschool We love TreeSchool

More information

Algebra Date Lesson Independent Work Computer Tuesday, Introduction (whole class) Problem with Dice

Algebra Date Lesson Independent Work Computer Tuesday, Introduction (whole class) Problem with Dice Tuesday, Introduction (whole class) Problem with Dice Critical Thinking Puzzles 3 Station expectations Count the Squares Math Riddles Wednesday, Computer expectations (whole class) Tangrams Read permission

More information

Wildlife Prairie State Park Amazing Animals Teachers Packet

Wildlife Prairie State Park Amazing Animals Teachers Packet Teachers Packet Grades 1-2 Abstract Animals come in all shapes and sizes. Shared characteristics link animals together into groups. Explore these characteristics, the habitats in which animals live and

More information

FIELDTRIP REPORT. The Selati River flowing. 5 th January to 7 th March st WET SEASON. Report by:

FIELDTRIP REPORT. The Selati River flowing. 5 th January to 7 th March st WET SEASON. Report by: The Selati River flowing FIELDTRIP REPORT 5 th January to 7 th March 2017 1 st WET SEASON Report by: Jessica Comley, Rhodes University, Grahamstown INTRODUCTION My second field trip to Selati Game Reserve

More information

WISCONSIN ALFALFA YIELD AND PERSISTENCE (WAYP) PROGRAM 2018 SUMMARY REPORT

WISCONSIN ALFALFA YIELD AND PERSISTENCE (WAYP) PROGRAM 2018 SUMMARY REPORT WISCONSIN ALFALFA YIELD AND PERSISTENCE (WAYP) PROGRAM 2018 SUMMARY REPORT Program Objectives: 1. To verify the yield and quality of alfalfa harvested from production fields over the life of the stand

More information

ALDENHAM SCHOOL Entrance Paper SAMPLE PAPER. Mathematics

ALDENHAM SCHOOL Entrance Paper SAMPLE PAPER. Mathematics ALDENHAM SCHOOL 11 + Entrance Paper SAMPLE PAPER Mathematics Length of Examination 45 minutes Do not open until you are told to do so Surname:. School: First name:... Age: Years Months.. INSTRUCTIONS FOR

More information

Writing A CNC Program Is Like Giving A Set Of Step By Step Instructions

Writing A CNC Program Is Like Giving A Set Of Step By Step Instructions Writing A CNC Program Is Like Giving A Set Of Step By Step Instructions O0001 N005 G54 G90 S300 M03 N010 G00 X2.5 Y1.25 N015 G43 H01 Z.1 O0001 N005 G54 G90 S300 M03 N010 G00 X2.5 Y1.25 N015 G43 H01 Z.1

More information

ELEMENTARY SCIENCE PROGRAM Math, Science & Technology Education. A Collection of Learning Experiences on CRAYFISH CATTARAUGUS-ALLEGANY BOCES GRADE 4

ELEMENTARY SCIENCE PROGRAM Math, Science & Technology Education. A Collection of Learning Experiences on CRAYFISH CATTARAUGUS-ALLEGANY BOCES GRADE 4 ELEMENTARY SCIENCE PROGRAM Math, Science & Technology Education A Collection of Learning Experiences on CRAYFISH CATTARAUGUS-ALLEGANY BOCES GRADE 4 TABLE OF CONTENTS Unit Overview...3 Format & Background

More information

Combination Analysis Tutorial

Combination Analysis Tutorial Combination Analysis Tutorial 3-1 Combination Analysis Tutorial It is inherent in the Swedge analysis (when the Block Shape = Wedge), that tetrahedral wedges can only be formed by the intersection of 2

More information

HOME RANGE AND HABITAT USE OF PLAINS SPOTTED SKUNKS IN THE OZARK MOUNTAINS OF ARKANSAS

HOME RANGE AND HABITAT USE OF PLAINS SPOTTED SKUNKS IN THE OZARK MOUNTAINS OF ARKANSAS HOME RANGE AND HABITAT USE OF PLAINS SPOTTED SKUNKS IN THE OZARK MOUNTAINS OF ARKANSAS Project Summary: The plains spotted skunk (Spilogale putorius interrupta), a poorly studied carnivore of central North

More information

Hunter and Angler Expenditures, Characteristics, and Economic Effects, North Dakota,

Hunter and Angler Expenditures, Characteristics, and Economic Effects, North Dakota, Agribusiness and Applied Economics Report No. 507-S January 2003 Hunter and Angler Expenditures, Characteristics, and Economic Effects, North Dakota, 2001-2002 Dean A. Bangsund and F. Larry Leistritz*

More information

Living World Review #2

Living World Review #2 Living World Review #2 1. Each of these organisms are found within Yellowstone National Park in the western United States. Use the following guidelines to create this food web and then answer questions

More information

ENROLLMENT MANAGEMENT REPORT COLLEGE PROFILE PHARMACY FALL 2017

ENROLLMENT MANAGEMENT REPORT COLLEGE PROFILE PHARMACY FALL 2017 ENROLLMENT MANAGEMENT REPORT COLLEGE PROFILE PHARMACY FALL 217 INTRODUCTION COLLEGE PROFILE The following college profile has been developed to tailor our annual enrollment report to your specific college

More information

Model Selection Erwan Le Pennec Fall 2015

Model Selection Erwan Le Pennec Fall 2015 Model Selection Erwan Le Pennec Fall 2015 library("dplyr") library("ggplot2") library("ggfortify") library("reshape2") Model Selection We will now use another classical dataset birthwt which corresponds

More information

SKILL: LEARN LION F MORGAN-CAIN & ASSOCIATES

SKILL: LEARN LION F MORGAN-CAIN & ASSOCIATES Lion facts: Lions live in groups called prides. A lion litter has 1-4 cubs in it. The females hunt at dusk or night. The lion s great physical strength puts it at the top of the food chain. Lions rest

More information

Education. ESL-Beginner

Education. ESL-Beginner Education ESL-Beginner For the Teacher General Information Welcome to Featherdale Wildlife Park! Our Wildlife Park is a great place for learning. Our Education team aims to support students, young and

More information

Executive Summary Gantahaz Lake 2006

Executive Summary Gantahaz Lake 2006 Executive Summary Gantahaz Lake 2006 A stocking assessment was conducted at Gantahaz Lake on September 29, 2006. This was the third assessment completed since the inception of stocking in 1976. The management

More information

Name: Date: Hour: Increased Rate of Extinction Project

Name: Date: Hour: Increased Rate of Extinction Project Increased Rate of Extinction Project Objectives : 1. Be able to construct an argument based on evidence about the simultaneous coevolution of Earth s systems and life on Earth. 2. Be able to describe factors

More information

1. The data below gives the eye colors of 20 students in a Statistics class. Make a frequency table for the data.

1. The data below gives the eye colors of 20 students in a Statistics class. Make a frequency table for the data. 1. The data below gives the eye colors of 20 students in a Statistics class. Make a frequency table for the data. Green Blue Brown Blue Blue Brown Blue Blue Blue Green Blue Brown Blue Brown Brown Blue

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level *3373524824* STATISTICS 4040/23 Paper 2 October/November 2013 Candidates answer on the question paper.

More information

Compound Aqua feeds in a More Competitive Market: Alternative protein sources for a more sustainable future

Compound Aqua feeds in a More Competitive Market: Alternative protein sources for a more sustainable future Compound Aqua feeds in a More Competitive Market: Alternative protein sources for a more sustainable future Abstract Albert G.J. Tacon Aquatic Farms Ltd 49-139 Kamehameha Hwy Kaneohe, Hawaii 96744 USA

More information

0:40 NUMERACY. year. Use 2B or HB pencil only SESSION 1. Time available for students to complete test: 40 minutes

0:40 NUMERACY. year. Use 2B or HB pencil only SESSION 1. Time available for students to complete test: 40 minutes NUMERACY calculator ALLOWED year 9 2013 0:40 SESSION 1 Time available for students to complete test: 40 minutes Use 2B or HB pencil only Australian Curriculum, Assessment and Reporting Authority, 2013

More information

Bring information alive

Bring information alive Bring information alive An introduction to data visualisation Rebecca Wolfe Research Uptake Manager RESYST (Resilient and Responsive Health Systems) Consortium Overview Introduction to data visualisation

More information

2 nd Grade Science Summative Test Name Unit 2

2 nd Grade Science Summative Test Name Unit 2 Unit 2 Physical Science Magnets Describe the magnetic field which surrounds a bar magnet (2s psc3b4o3 2010) Scientific Inquiry of the Magnetic Field Which Surrounds a Bar Magnet When I went into the kitchen

More information

LiMPETS Sandy Beach Monitoring Classroom Presentation - SCRIPT

LiMPETS Sandy Beach Monitoring Classroom Presentation - SCRIPT LiMPETS Sandy Beach Monitoring Classroom Presentation - SCRIPT I m really excited to talk to you about the LiMPETS program for which you guys will participate as marine scientists. LiMPETS stands for Long-Term

More information

Satisfaction with getting to work 56% 15% 6% 6% Total distance travelled. miles per week

Satisfaction with getting to work 56% 15% 6% 6% Total distance travelled. miles per week Page/... Headlines Emersons Green Travel to Work Survey March 0 Number of respondents Main modes of travel (%) 0% Satisfaction with getting to work % % Satisfaction with getting % % % (driver with others/

More information

Sliding Arm. EN1154 (Inc.EN1634part.1) 500,000cycles RYOBI. Overhead door closer D-1200 SERIES

Sliding Arm. EN1154 (Inc.EN1634part.1) 500,000cycles RYOBI. Overhead door closer D-1200 SERIES Sliding Arm EN14 (Inc.EN164part.1) 500,000cycles Overhead closer RYOBI Overhead closer Model chart Size Without hold-open Without backcheck With backcheck width Size Standard application D-1200 D-1200

More information

Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls

Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls 2014 Global Level Crossing Symposium August 2014, Urbana, IL, USA Driver Behavior at Highway-Rail Grade Crossings With Passive Traffic Controls - A Driving Simulator Study Presenter: Dr. Asad J. Khattak

More information

Satisfaction with getting to work 54% 14% 6% 5% Total distance travelled. miles per week

Satisfaction with getting to work 54% 14% 6% 5% Total distance travelled. miles per week Page/... Travel to Work Survey March 0 Headlines South Gloucestershire LA Area Number of respondents Main modes of travel (%) Satisfaction with getting to work % Satisfaction with getting % (driver with

More information

Contact Information Hannah Wright (937) #WVUGREEKWEEK18

Contact Information Hannah Wright (937) #WVUGREEKWEEK18 Contact Information Hannah Wright (937)-626-8154 vpp.wvupanhellenic@gmail.com Please be mindful that all costumes, crafts, music, etc. must be respectful. Inappropriate representations could lead to disqualification.

More information

SCI-2 MMS Ecosystems and Review Quiz Exam not valid for Paper Pencil Test Sessions

SCI-2 MMS Ecosystems and Review Quiz Exam not valid for Paper Pencil Test Sessions SCI-2 MMS Ecosystems and Review Quiz Exam not valid for Paper Pencil Test Sessions [Exam ID:23VRZ2 1 Which of the following does NOT describe a rain forest? A Snow B Rain C Wet grounds D Hot temperatures

More information

True class interval. frequency total. frequency

True class interval. frequency total. frequency 20 1 16 14 12 10 6 4 2 0 frequency 44.5 54.5 64.5 74.5 4.5 94.5 104.5 49.5 59.5 69.5 79.5 9.5 99.5 True class interval True class interval 49.5-59.5 59.5-69.5 69.5-79.5 79.5-9.5 9.5-99.5 total frequency

More information

A Snapshot of Our Changing Climatology

A Snapshot of Our Changing Climatology A Snapshot of Our Changing Climatology Dr. Kenneth ( Kenny ) Blumenfeld Sr. Climatologist DNR State Climatology Office 11/17/2018 1 Items to bear in mind 1. Climate news elsewhere may not apply here 2.

More information

Lewisham Pharmaceutical Needs Assessment Appendix B - Lewisham The Place

Lewisham Pharmaceutical Needs Assessment Appendix B - Lewisham The Place Lewisham Pharmaceutical Needs Assessment 2018 Appendix B - Lewisham The Place Lewisham is the 13 th largest borough in London by population size and the 5 th largest in Southwark Inner London Source: MYE

More information

What do animals eat?

What do animals eat? What do animals eat? Name: Class: No. 1. Use the words in the box to finish the sentences about carnivores. eat animals meat carnivores are animals that eat Draw a picture of what a carnivore eats. only.

More information

Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2

Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2 Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2 Student Name: Solve the problem. 1) Scott Tarnowski owns a pet grooming shop. His prices for grooming dogs are based on the

More information

DOWNLOAD OR READ : NEW TECHNOLOGIES IN AQUACULTURE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : NEW TECHNOLOGIES IN AQUACULTURE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : NEW TECHNOLOGIES IN AQUACULTURE PDF EBOOK EPUB MOBI Page 1 Page 2 new technologies in aquaculture new technologies in aquaculture pdf new technologies in aquaculture new technologies

More information

EARLY HUMANS COMPARE AND CONTRAST CHART

EARLY HUMANS COMPARE AND CONTRAST CHART Name: KEY Period: Date: World History Mrs. Schenck Early Human/ Nickname Ardipithecus ramidus Ardi Where they lived/ When Where: Eastern Africa (Ethiopia) When: 4.4 million years ago Very apelike, hairy

More information

Green crabs: invaders in the Great Marsh Featured scientist: Alyssa Novak from the Center for Coastal Studies/Boston University

Green crabs: invaders in the Great Marsh Featured scientist: Alyssa Novak from the Center for Coastal Studies/Boston University Name Green crabs: invaders in the Great Marsh Featured scientist: Alyssa Novak from the Center for Coastal Studies/Boston University Research Background: Marshes are areas along the coast that flood with

More information

Dauphin Lake Fishery. Status of Walleye Stocks and Conservation Measures

Dauphin Lake Fishery. Status of Walleye Stocks and Conservation Measures Dauphin Lake Fishery Status of Walleye Stocks and Conservation Measures Date: December, 21 Dauphin Lake Fishery Status of Walleye Stocks and Conservation Measures Background: Walleye stocks in Dauphin

More information

Data Analysis Report for: Gulf of Nova Scotia Fleet Planning Board

Data Analysis Report for: Gulf of Nova Scotia Fleet Planning Board Data Analysis Report for: Gulf of Nova Scotia Fleet Planning Board Lobster Blood Protein Levels & Moult Cycle October 2, 2015 Project Background Rationale Lobster health is directly related to the timing

More information

STAT Week 7. Advanced R Graphics and ggplot2. Advanced R Graphics. ggplot2. February 22, 2018

STAT Week 7. Advanced R Graphics and ggplot2. Advanced R Graphics. ggplot2. February 22, 2018 and and February 22, 2018 and NCAA Basketball data and We will use data from the NCAA basketball tournament from 2011-2016. url

More information

1999 On-Board Sacramento Regional Transit District Survey

1999 On-Board Sacramento Regional Transit District Survey SACOG-00-009 1999 On-Board Sacramento Regional Transit District Survey June 2000 Sacramento Area Council of Governments 1999 On-Board Sacramento Regional Transit District Survey June 2000 Table of Contents

More information

Red-faced malkoha. Source: The red-faced malkoha is endemic to Sri Lanka s Wet

Red-faced malkoha. Source:   The red-faced malkoha is endemic to Sri Lanka s Wet Red-faced malkoha Red-faced malkoha The red-faced malkoha is endemic to Sri Lanka s Wet Zone rainforests. They like to eat a variety of insects, small animals and berries. Unfortunately, the red-faced

More information

Key Stage 1 ACTIVITY BOOK Ages 5-7

Key Stage 1 ACTIVITY BOOK Ages 5-7 Key Stage 1 ACTIVITY BOOK Ages 5-7 Teacher Answer Booklet Hi! My name is Seamor. Answer my questions as we go around the aquarium. Front Room 1. What colour are the Crawfish in the front room? Orange/Brown

More information

GYPSY MOTH (LYMANTRIA DISPAR) TRAPPING & TREATMENTS IN MINNESOTA 2012 UPDATE

GYPSY MOTH (LYMANTRIA DISPAR) TRAPPING & TREATMENTS IN MINNESOTA 2012 UPDATE GYPSY MOTH (LYMANTRIA DISPAR) TRAPPING & TREATMENTS IN MINNESOTA 2012 UPDATE Natasha (Northrop) Nelson, Gypsy Moth Trapping Coordinator Minnesota Department of Agriculture Plant Protection Division, Pest

More information

Watersports and Leisure Participation Survey 2006 BMF, MCA, RNLI and RYA, sponsored by Sunsail

Watersports and Leisure Participation Survey 2006 BMF, MCA, RNLI and RYA, sponsored by Sunsail Watersports and Leisure Participation Survey 2006 Page 1 of 37 Watersports and Leisure Participation Survey 2006 BMF, MCA, RNLI and RYA, sponsored by Sunsail The Old Coach House Wharf Road Guildford Surrey

More information

Two types of physical and biological standards are used to judge the performance of the Wheeler North Reef 1) Absolute standards are measured against

Two types of physical and biological standards are used to judge the performance of the Wheeler North Reef 1) Absolute standards are measured against 1 Two types of physical and biological standards are used to judge the performance of the Wheeler North Reef 1) Absolute standards are measured against fixed value at Wheeler North Reef only 2) Relative

More information

VEHICLE / PEDESTRIAN COLLISIONS

VEHICLE / PEDESTRIAN COLLISIONS VEHICLE / PEDESTRIAN COLLISIONS HRM: April 018 DISCLAIMER: All figures presented in this report reflect the information held on HRP systems at the time of data extraction and are subject to change without

More information