Mathematics 47: Lecture 2

Size: px
Start display at page:

Download "Mathematics 47: Lecture 2"

Transcription

1 Mathematics 47: Lecture 2 Displaying Data Dan Sloughter Furman University March 7, 2006 Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

2 Entering data into R Example Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

3 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

4 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

5 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Create a vector x with the data: > x <- c(62, 23, 56, 52, 34, 42, 40, 68, 45, 83) Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

6 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Create a vector x with the data: > x <- c(62, 23, 56, 52, 34, 42, 40, 68, 45, 83) Alternatively, read the data from a file, say bat.dat: > x <- scan("bat.dat") Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

7 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Create a vector x with the data: > x <- c(62, 23, 56, 52, 34, 42, 40, 68, 45, 83) Alternatively, read the data from a file, say bat.dat: > x <- scan("bat.dat") Or input the data directly, > x <- scan(), followed by typing in the data (with spaces between entries and a blank line to end input). Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

8 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Create a vector x with the data: > x <- c(62, 23, 56, 52, 34, 42, 40, 68, 45, 83) Alternatively, read the data from a file, say bat.dat: > x <- scan("bat.dat") Or input the data directly, > x <- scan(), followed by typing in the data (with spaces between entries and a blank line to end input). Or, using R Commander, select New data set from the Data menu. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

9 Entering data into R Example In an experiment to determine the distance at which a bat can detect an insect, the following bat-to-insect detection distances (in centimeters) were observed: 62, 23, 56, 52, 34, 42, 40, 68, 45, 83. Methods to input the data to R: Create a vector x with the data: > x <- c(62, 23, 56, 52, 34, 42, 40, 68, 45, 83) Alternatively, read the data from a file, say bat.dat: > x <- scan("bat.dat") Or input the data directly, > x <- scan(), followed by typing in the data (with spaces between entries and a blank line to end input). Or, using R Commander, select New data set from the Data menu. Note: if you use R Commander, call the data set Bat and relabel var1 as x. Then use Bat$x, to refer to the data. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

10 Stem-and-leaf plot Definition A stem-and-leaf plot is a list of the data, in numerical order, in two columns, with the right column containing the last digits of the numbers. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

11 Example (cont d) The command > stem(x) creates a stem-and-leaf plot: The decimal point is 1 digit(s) to the right of the Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

12 Example (cont d) The command > stem(x) creates a stem-and-leaf plot: The decimal point is 1 digit(s) to the right of the The command > stem(x, scale=2) will expand the scale by a factor of 2, giving the more useful stem-and-leaf plot: The decimal point is 1 digit(s) to the right of the Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

13 Example (cont d) After loading R Commander, either selecting Stem-and-leaf display (be sure to select the variable in the dialog box) from the Graphics menu, or entering the command stem.leaf(bat$x) will create: 1 2: represents 12 leaf unit: 1 n: (2) Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

14 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

15 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

16 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) The R command > hist(x) produces a histogram of the bat-to-insect distances using the intervals [20, 30], (30, 40], (40, 50], (50, 60], (60, 70], (70, 80], and (80, 90]. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

17 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) The R command > hist(x) produces a histogram of the bat-to-insect distances using the intervals [20, 30], (30, 40], (40, 50], (50, 60], (60, 70], (70, 80], and (80, 90]. The command > hist(x, right=false) uses the intervals [20, 30), [30, 40), [40, 50), [50, 60), [60, 70), [70, 80), and [80, 90]. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

18 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) The R command > hist(x) produces a histogram of the bat-to-insect distances using the intervals [20, 30], (30, 40], (40, 50], (50, 60], (60, 70], (70, 80], and (80, 90]. The command > hist(x, right=false) uses the intervals [20, 30), [30, 40), [40, 50), [50, 60), [60, 70), [70, 80), and [80, 90]. The command > hist(x, breaks=10) will use 10 (or so) intervals Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

19 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) The R command > hist(x) produces a histogram of the bat-to-insect distances using the intervals [20, 30], (30, 40], (40, 50], (50, 60], (60, 70], (70, 80], and (80, 90]. The command > hist(x, right=false) uses the intervals [20, 30), [30, 40), [40, 50), [50, 60), [60, 70), [70, 80), and [80, 90]. The command > hist(x, breaks=10) will use 10 (or so) intervals The command > hist(x, breaks=c(20, 35, 45, 65, 85)) will use the intervals [20, 35], (35, 45], (45, 65], and (65, 85]. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

20 Histograms Definition A histogram is a bar graph of the frequency distribution of a set of data. Example (cont d) The R command > hist(x) produces a histogram of the bat-to-insect distances using the intervals [20, 30], (30, 40], (40, 50], (50, 60], (60, 70], (70, 80], and (80, 90]. The command > hist(x, right=false) uses the intervals [20, 30), [30, 40), [40, 50), [50, 60), [60, 70), [70, 80), and [80, 90]. The command > hist(x, breaks=10) will use 10 (or so) intervals The command > hist(x, breaks=c(20, 35, 45, 65, 85)) will use the intervals [20, 35], (35, 45], (45, 65], and (65, 85]. Note: when the intervals are not of equal length, the heights of the rectangles are not frequencies; rather the areas of the rectangles are scaled to be equal to the proportion of observations in the interval. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

21 Example (cont d) The command > hist(x, right=false, main="bat-to-insect Detection Distances", xlab="distance in cm") produces the plot: Bat to Insect Detection Distances Frequency Distance in cm Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

22 Scatter plots Definition For bivariate data (x 1, y 1 ), (x 2, y 2 )..., (x n, y n ), a scatter plot, is a plot of the ordered pairs of data. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

23 Scatter plots Definition For bivariate data (x 1, y 1 ), (x 2, y 2 )..., (x n, y n ), a scatter plot, is a plot of the ordered pairs of data. Example An experiment to measure the yield of wheat for seven different levels of nitrogen gave the following observations: Nitrogen/acre (x) Yield (cwt/acre) (y) Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

24 Example (cont d) Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

25 Example (cont d) If the nitrogen levels are in a vector x and the wheat yields are in a vector y, then the command > plot(x, y, main="wheat Yield vs. Nitrogen Levels", xlab="nitrogen per acre", ylab="wheat Yield (cwt/acre)") creates the scatter plot below. Wheat Yield vs. Nitrogen Levels Wheat Yield (cwt/acre) Nitrogen per acre Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

26 Example Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

27 Example The command > plot(x, y, type="l") will plot the points connected by lines. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

28 Example The command > plot(x, y, type="l") will plot the points connected by lines. In R Commander, after creating the data set, select Scatterplot from the Graphics menu to create a scatterplot. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

29 Printing and graphics in R The command > dev.print() will print the current graph to the default printer. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

30 Printing and graphics in R The command > dev.print() will print the current graph to the default printer. In Windows, the command > window() will create a new graphics window. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

31 Printing and graphics in R The command > dev.print() will print the current graph to the default printer. In Windows, the command > window() will create a new graphics window. In Linux, the command > x11() will create a new graphics window. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

32 Printing and graphics in R The command > dev.print() will print the current graph to the default printer. In Windows, the command > window() will create a new graphics window. In Linux, the command > x11() will create a new graphics window. The command > dev.set(n) will make window n the active plotting window. Dan Sloughter (Furman University) Mathematics 47: Lecture 2 March 7, / 13

Mathematics 22: Lecture 2

Mathematics 22: Lecture 2 Mathematics 22: Lecture 2 Direction Fields Dan Sloughter Furman University January 4, 2008 Dan Sloughter (Furman University) Mathematics 22: Lecture 2 January 4, 2008 1 / 8 Direction fields Note: If u(t)

More information

The table shows the frequency of the number of visits to the doctor per year for a group of children. Mean = Median = IQR =

The table shows the frequency of the number of visits to the doctor per year for a group of children. Mean = Median = IQR = Name Date: Lesson 3-1: Intro to Bivariate Stats Learning Goals: #1: What is Bivariate data? How do you calculate 2-variable data on the calculator? #2: How do we create a scatterplot? Review of Descriptive

More information

1 Introduction. 1.1 What is Statistics?

1 Introduction. 1.1 What is Statistics? 1 Introduction 1.1 What is Statistics? MATH1015 Biostatistics Week 1 Statistics is a scientific study of numerical data based on natural phenomena. It is also the science of collecting, organising, interpreting

More information

Ch. 1.4 Histograms & Stem-&-Leaf Plots

Ch. 1.4 Histograms & Stem-&-Leaf Plots Ch. 1.4 Histograms & Stem-&-Leaf Plots Learning Intentions: Create a histogram & stem-&-leaf plot of a data set. Given a list of data, use a calculator to graph a histogram. Interpret histograms & stem-&-leaf

More information

Data Presentation. Figure 1. Hand drawn data sheet

Data Presentation. Figure 1. Hand drawn data sheet Data Presentation The purpose of putting results of experiments into graphs, charts and tables is two-fold. First, it is a visual way to look at the data and see what happened and make interpretations.

More information

Lesson 18-1 Lesson Lesson 18-1 Lesson Lesson 18-2 Lesson 18-2

Lesson 18-1 Lesson Lesson 18-1 Lesson Lesson 18-2 Lesson 18-2 Topic 18 Set A Words survey data Topic 18 Set A Words Lesson 18-1 Lesson 18-1 sample line plot Lesson 18-1 Lesson 18-1 frequency table bar graph Lesson 18-2 Lesson 18-2 Instead of making 2-sided copies

More information

12. A(n) is the number of times an item or number occurs in a data set.

12. A(n) is the number of times an item or number occurs in a data set. Chapter 15 Vocabulary Practice Match each definition to its corresponding term. a. data b. statistical question c. population d. sample e. data analysis f. parameter g. statistic h. survey i. experiment

More information

Displaying Distributions - Quantitative Variables

Displaying Distributions - Quantitative Variables Displaying Distributions - Quantitative Variables Lecture 13 Sections 4.4.1-4.4.3 Robb T. Koether Hampden-Sydney College Wed, Feb 8, 2012 Robb T. Koether (Hampden-Sydney College)Displaying Distributions

More information

Part I, Chapters 4 & 5. Data Tables and Data Analysis Statistics and Figures

Part I, Chapters 4 & 5. Data Tables and Data Analysis Statistics and Figures Part I, Chapters 4 & 5 Data Tables and Data Analysis Statistics and Figures Descriptive Statistics 1 Are data points clumped? (order variable / exp. variable) Concentrated around one value? Concentrated

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SAS SAS (originally Statistical Analysis Software ) is a commercial statistical software package based on a powerful programming

More information

Brief Guide on Using SPSS 10.0

Brief Guide on Using SPSS 10.0 Brief Guide on Using SPSS 10.0 (Use student data, 22 cases, studentp.dat in Dr. Chang s Data Directory Page) (Page address: http://www.cis.ysu.edu/~chang/stat/) I. Processing File and Data To open a new

More information

WHOLE NUMBER AND DECIMAL OPERATIONS

WHOLE NUMBER AND DECIMAL OPERATIONS WHOLE NUMBER AND DECIMAL OPERATIONS Whole Number Place Value : 5,854,902 = Ten thousands thousands millions Hundred thousands Ten thousands Adding & Subtracting Decimals : Line up the decimals vertically.

More information

Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5

Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5 Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5 STANDARD 5.2(B) compare and order two decimals to thousandths and represent comparisons using the symbols >,

More information

Quality and Six Sigma Tools using MINITAB Statistical Software: A complete Guide to Six Sigma DMAIC Tools using MINITAB

Quality and Six Sigma Tools using MINITAB Statistical Software: A complete Guide to Six Sigma DMAIC Tools using MINITAB Samples from MINITAB Book Quality and Six Sigma Tools using MINITAB Statistical Software A complete Guide to Six Sigma DMAIC Tools using MINITAB Prof. Amar Sahay, Ph.D. One of the major objectives of this

More information

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE

GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Six Sigma Quality Concepts & Cases Volume I STATISTICAL TOOLS IN SIX SIGMA DMAIC PROCESS WITH MINITAB APPLICATIONS CHAPTER 2 GETTING STARTED WITH MINITAB INTRODUCTION TO MINITAB STATISTICAL SOFTWARE Amar

More information

1.3 Graphical Summaries of Data

1.3 Graphical Summaries of Data Arkansas Tech University MATH 3513: Applied Statistics I Dr. Marcel B. Finan 1.3 Graphical Summaries of Data In the previous section we discussed numerical summaries of either a sample or a data. In this

More information

3. Data Analysis and Statistics

3. Data Analysis and Statistics 3. Data Analysis and Statistics 3.1 Visual Analysis of Data 3.2.1 Basic Statistics Examples 3.2.2 Basic Statistical Theory 3.3 Normal Distributions 3.4 Bivariate Data 3.1 Visual Analysis of Data Visual

More information

8. MINITAB COMMANDS WEEK-BY-WEEK

8. MINITAB COMMANDS WEEK-BY-WEEK 8. MINITAB COMMANDS WEEK-BY-WEEK In this section of the Study Guide, we give brief information about the Minitab commands that are needed to apply the statistical methods in each week s study. They are

More information

Grade 6 Curriculum and Instructional Gap Analysis Implementation Year

Grade 6 Curriculum and Instructional Gap Analysis Implementation Year Grade 6 Curriculum and Implementation Year 2014-2015 Revised Number and operations Proportionality What new content moves into the grade 6 curriculum in Use a visual representation to describe the relationship

More information

Middle School Math Course 3

Middle School Math Course 3 Middle School Math Course 3 Correlation of the ALEKS course Middle School Math Course 3 to the Texas Essential Knowledge and Skills (TEKS) for Mathematics Grade 8 (2012) (1) Mathematical process standards.

More information

Dr. Junchao Xia Center of Biophysics and Computational Biology. Fall /6/ /13

Dr. Junchao Xia Center of Biophysics and Computational Biology. Fall /6/ /13 BIO5312 Biostatistics R Session 02: Graph Plots in R Dr. Junchao Xia Center of Biophysics and Computational Biology Fall 2016 9/6/2016 1 /13 Graphic Methods Graphic methods of displaying data give a quick

More information

STA 570 Spring Lecture 5 Tuesday, Feb 1

STA 570 Spring Lecture 5 Tuesday, Feb 1 STA 570 Spring 2011 Lecture 5 Tuesday, Feb 1 Descriptive Statistics Summarizing Univariate Data o Standard Deviation, Empirical Rule, IQR o Boxplots Summarizing Bivariate Data o Contingency Tables o Row

More information

Mathematics - LV 5 (with QuickTables)

Mathematics - LV 5 (with QuickTables) Mathematics - LV 5 (with QuickTables) Correlation of the ALEKS Course Mathematics LV 5 to the California Mathematics Content Standards for Grade 5 (1998) Number Sense: NS1.1: NS1.2: NS1.3: NS1.4: TD =

More information

Middle Years Data Analysis Display Methods

Middle Years Data Analysis Display Methods Middle Years Data Analysis Display Methods Double Bar Graph A double bar graph is an extension of a single bar graph. Any bar graph involves categories and counts of the number of people or things (frequency)

More information

Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5

Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5 Academic Vocabulary CONTENT BUILDER FOR THE PLC MATH GRADE 5 STANDARD 5.2(B) compare and order two decimals to thousandths and represent comparisons using the symbols >,

More information

Pictorial and Tabular Methods

Pictorial and Tabular Methods Example(Example 1.2 p5): The article Effects of Aggregates and Microfillers on the Flexural Properties of Concrete reported on a study of strength properties of high performance concrete obtained by using

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SPSS SPSS (originally Statistical Package for the Social Sciences ) is a commercial statistical software package with an easy-to-use

More information

This chapter will show how to organize data and then construct appropriate graphs to represent the data in a concise, easy-to-understand form.

This chapter will show how to organize data and then construct appropriate graphs to represent the data in a concise, easy-to-understand form. CHAPTER 2 Frequency Distributions and Graphs Objectives Organize data using frequency distributions. Represent data in frequency distributions graphically using histograms, frequency polygons, and ogives.

More information

So..to be able to make comparisons possible, we need to compare them with their respective distributions.

So..to be able to make comparisons possible, we need to compare them with their respective distributions. Unit 3 ~ Modeling Distributions of Data 1 ***Section 2.1*** Measures of Relative Standing and Density Curves (ex) Suppose that a professional soccer team has the money to sign one additional player and

More information

Basic Statistical Graphics in R. Stem and leaf plots 100,100,100,99,98,97,96,94,94,87,83,82,77,75,75,73,71,66,63,55,55,55,51,19

Basic Statistical Graphics in R. Stem and leaf plots 100,100,100,99,98,97,96,94,94,87,83,82,77,75,75,73,71,66,63,55,55,55,51,19 Basic Statistical Graphics in R. Stem and leaf plots Example. Create a vector of data titled exam containing the following scores: 100,100,100,99,98,97,96,94,94,87,83,82,77,75,75,73,71,66,63,55,55,55,51,19

More information

JMP 10 Student Edition Quick Guide

JMP 10 Student Edition Quick Guide JMP 10 Student Edition Quick Guide Instructions presume an open data table, default preference settings and appropriately typed, user-specified variables of interest. RMC = Click Right Mouse Button Graphing

More information

Year 9 Mathematics (1-2) Long Term Plan

Year 9 Mathematics (1-2) Long Term Plan Year 9 Mathematics (1-2) Long Term Plan 2018-19 Place value Decimals Addition Subtraction Long multiplication Long Division Powers of 10 Function machines expressions + - expressions x Name and sketch

More information

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT

8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT 8 TH GRADE MATHEMATICS CHECKLIST Goals 6 10 Illinois Learning Standards A-D Assessment Frameworks Calculators Allowed on ISAT ISAT test questions are derived from this checklist. Use as a curriculum guide.

More information

Data Handling. Moving from A to A* Calculate the numbers to be surveyed for a stratified sample (A)

Data Handling. Moving from A to A* Calculate the numbers to be surveyed for a stratified sample (A) Moving from A to A* A* median, quartiles and interquartile range from a histogram (A*) Draw histograms from frequency tables with unequal class intervals (A) Calculate the numbers to be surveyed for a

More information

"Unpacking the Standards" 4th Grade Student Friendly "I Can" Statements I Can Statements I can explain why, when and how I got my answer.

Unpacking the Standards 4th Grade Student Friendly I Can Statements I Can Statements I can explain why, when and how I got my answer. 0406.1.1 4th Grade I can explain why, when and how I got my answer. 0406.1.2 I can identify the range of an appropriate estimate. I can identify the range of over-estimates. I can identify the range of

More information

Test Bank for Privitera, Statistics for the Behavioral Sciences

Test Bank for Privitera, Statistics for the Behavioral Sciences 1. A simple frequency distribution A) can be used to summarize grouped data B) can be used to summarize ungrouped data C) summarizes the frequency of scores in a given category or range 2. To determine

More information

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables

Select Cases. Select Cases GRAPHS. The Select Cases command excludes from further. selection criteria. Select Use filter variables Select Cases GRAPHS The Select Cases command excludes from further analysis all those cases that do not meet specified selection criteria. Select Cases For a subset of the datafile, use Select Cases. In

More information

York Public Schools Subject Area: Mathematics Course: 6 th Grade Math NUMBER OF DAYS TAUGHT DATE

York Public Schools Subject Area: Mathematics Course: 6 th Grade Math NUMBER OF DAYS TAUGHT DATE 6.1.1.d 6.EE.A.1 Represent large numbers using exponential notation (i.e.. 10x10x10x10x10) (Review PV chart first) Write evaluate numerical expressions involving whole number exponents 5 days August, Lesson

More information

Barrhead High School Mathematics Department. National 4 Mathematics. Learning Intentions & Success Criteria: Assessing My Progress

Barrhead High School Mathematics Department. National 4 Mathematics. Learning Intentions & Success Criteria: Assessing My Progress Barrhead High School Mathematics Department National 4 Mathematics Learning Intentions & Success Criteria: Assessing My Progress Expressions and Formulae Topic Learning Intention Success Criteria I understand

More information

Measuring the Stack Height of Nested Styrofoam Cups

Measuring the Stack Height of Nested Styrofoam Cups Measuring the Stack Height of Nested Styrofoam Cups Is there a relationship between the height of nested Styrofoam cups and the number of cups nested? If yes, elaborate on it. Measure the stack heights

More information

STAT STATISTICAL METHODS. Statistics: The science of using data to make decisions and draw conclusions

STAT STATISTICAL METHODS. Statistics: The science of using data to make decisions and draw conclusions STAT 515 --- STATISTICAL METHODS Statistics: The science of using data to make decisions and draw conclusions Two branches: Descriptive Statistics: The collection and presentation (through graphical and

More information

Unit Maps: Grade 6 Math

Unit Maps: Grade 6 Math Rational Numbers 6.4 Number and operations. The student represents addition, subtraction, multiplication, and division of rational numbers while solving problems and justifying the solutions. Comparison

More information

Lecture 6: Chapter 6 Summary

Lecture 6: Chapter 6 Summary 1 Lecture 6: Chapter 6 Summary Z-score: Is the distance of each data value from the mean in standard deviation Standardizes data values Standardization changes the mean and the standard deviation: o Z

More information

CHAPTER 2: Describing Location in a Distribution

CHAPTER 2: Describing Location in a Distribution CHAPTER 2: Describing Location in a Distribution 2.1 Goals: 1. Compute and use z-scores given the mean and sd 2. Compute and use the p th percentile of an observation 3. Intro to density curves 4. More

More information

Experimental Design and Graphical Analysis of Data

Experimental Design and Graphical Analysis of Data Experimental Design and Graphical Analysis of Data A. Designing a controlled experiment When scientists set up experiments they often attempt to determine how a given variable affects another variable.

More information

Further Maths Notes. Common Mistakes. Read the bold words in the exam! Always check data entry. Write equations in terms of variables

Further Maths Notes. Common Mistakes. Read the bold words in the exam! Always check data entry. Write equations in terms of variables Further Maths Notes Common Mistakes Read the bold words in the exam! Always check data entry Remember to interpret data with the multipliers specified (e.g. in thousands) Write equations in terms of variables

More information

GRADES 4, 5, and 6 MATH BIG IDEAS

GRADES 4, 5, and 6 MATH BIG IDEAS Table 1: Strand A: NUMBER SENSE Introduce ratio and proportions. Introduce the exploration of factors of a number Introduce the relationship between numerators and denominators Introductory Introduce comparing,

More information

Prentice Hall Mathematics: Course Correlated to: Ohio Academic Content Standards for Mathematics (Grade 7)

Prentice Hall Mathematics: Course Correlated to: Ohio Academic Content Standards for Mathematics (Grade 7) Ohio Academic Content Standards for Mathematics (Grade 7) NUMBER, NUMBER SENSE AND OPERATIONS STANDARD 1. Demonstrate an understanding of place value using powers of 10 and write large numbers in scientific

More information

MATH1635, Statistics (2)

MATH1635, Statistics (2) MATH1635, Statistics (2) Chapter 2 Histograms and Frequency Distributions I. A Histogram is a form of bar graph in which: A. The width of a bar is designated by an interval or ratio data value and thus

More information

Math 120 Introduction to Statistics Mr. Toner s Lecture Notes 3.1 Measures of Central Tendency

Math 120 Introduction to Statistics Mr. Toner s Lecture Notes 3.1 Measures of Central Tendency Math 1 Introduction to Statistics Mr. Toner s Lecture Notes 3.1 Measures of Central Tendency lowest value + highest value midrange The word average: is very ambiguous and can actually refer to the mean,

More information

Mathematics Scope & Sequence Grade 5 Revised: May 10, 2016

Mathematics Scope & Sequence Grade 5 Revised: May 10, 2016 Mathematics Scope & Sequence Grade 5 Revised: May 10, 2016 First Nine Weeks (39 ) 5.2B compare and order two decimals to thousandths and represent comparisons using the symbols >,

More information

Learning Log Title: CHAPTER 7: PROPORTIONS AND PERCENTS. Date: Lesson: Chapter 7: Proportions and Percents

Learning Log Title: CHAPTER 7: PROPORTIONS AND PERCENTS. Date: Lesson: Chapter 7: Proportions and Percents Chapter 7: Proportions and Percents CHAPTER 7: PROPORTIONS AND PERCENTS Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 7: Proportions and Percents Date: Lesson: Learning Log

More information

8 Organizing and Displaying

8 Organizing and Displaying CHAPTER 8 Organizing and Displaying Data for Comparison Chapter Outline 8.1 BASIC GRAPH TYPES 8.2 DOUBLE LINE GRAPHS 8.3 TWO-SIDED STEM-AND-LEAF PLOTS 8.4 DOUBLE BAR GRAPHS 8.5 DOUBLE BOX-AND-WHISKER PLOTS

More information

8 th Grade Pre-Integrated Math

8 th Grade Pre-Integrated Math Use order of operations Evaluate expressions Use integers and absolute value Add integers Subtract integers Use inductive reasoning Multiply and divide integers Use properties of numbers Simplify variable

More information

R Hints for Chapter : Enter the numbers of men as a data vector and give it a name, e.g.,

R Hints for Chapter : Enter the numbers of men as a data vector and give it a name, e.g., R Hints for Chapter 2 2.1: Enter the numbers of men as a data vector and give it a name, e.g., > nomen=c(13,150,442,...) (You complete the entries.) Give the components of the vector names. > names(nomen)=c(

More information

Mathematics 9 Exploration Lab Scatter Plots and Lines of Best Fit. a line used to fit into data in order to make a prediction about the data.

Mathematics 9 Exploration Lab Scatter Plots and Lines of Best Fit. a line used to fit into data in order to make a prediction about the data. Mathematics 9 Exploration Lab Scatter Plots and Lines of Best Fit A. Definitions Line of Best Fit: a line used to fit into data in order to make a prediction about the data. Scatter Plot: a graph of unconnected

More information

McGraw-Hill Ryerson. Data Management 12. Section 5.1 Continuous Random Variables. Continuous Random. Variables

McGraw-Hill Ryerson. Data Management 12. Section 5.1 Continuous Random Variables. Continuous Random. Variables McGraw-Hill Ryerson Data Management 12 Section Continuous Random I am learning to distinguish between discrete variables and continuous variables work with sample values for situations that can take on

More information

Common Core Vocabulary and Representations

Common Core Vocabulary and Representations Vocabulary Description Representation 2-Column Table A two-column table shows the relationship between two values. 5 Group Columns 5 group columns represent 5 more or 5 less. a ten represented as a 5-group

More information

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc Section 2-2 Frequency Distributions Copyright 2010, 2007, 2004 Pearson Education, Inc. 2.1-1 Frequency Distribution Frequency Distribution (or Frequency Table) It shows how a data set is partitioned among

More information

Concept Fifth Grade: Third Nine Weeks Readiness Standards Time Key Content Key Vocabulary

Concept Fifth Grade: Third Nine Weeks Readiness Standards Time Key Content Key Vocabulary Algebra: Expressions and Equations Concept Fifth Grade: Third Nine Weeks 14-15 Readiness Standards Time Key Content Key Vocabulary 5.4B Represent and solve multi-step problems involving the four operations

More information

Grade 6 Math Curriculum Sequence School Year

Grade 6 Math Curriculum Sequence School Year Grade 6 Math Curriculum Sequence School Year 2010-2011 QUARTER 1 (Aug 30 Nov 5) 45 days BENCHMARK A (same skills as June Benchmark in previous grade) UNIT 1: Fractions 1 Review Add and Subtract Fractions

More information

Statistical Graphs & Charts

Statistical Graphs & Charts Statistical Graphs & Charts CS 4460 Intro. to Information Visualization August 30, 2017 John Stasko Learning Objectives Learn different statistical data graphs Line graph, Bar Graph, Scatterplot, Trellis,

More information

Estimate A number that is close to an exact answer. An approximate answer.

Estimate A number that is close to an exact answer. An approximate answer. Estimate A number that is close to an exact answer. An approximate answer. Inverse Operations Operations used to undo each other + - X Product The result of multiplying two factors together. 3 x 4=12 Factor

More information

Organizing and Summarizing Data

Organizing and Summarizing Data 1 Organizing and Summarizing Data Key Definitions Frequency Distribution: This lists each category of data and how often they occur. : The percent of observations within the one of the categories. This

More information

How to use FSBforecast Excel add in for regression analysis

How to use FSBforecast Excel add in for regression analysis How to use FSBforecast Excel add in for regression analysis FSBforecast is an Excel add in for data analysis and regression that was developed here at the Fuqua School of Business over the last 3 years

More information

Greencastle-Antrim School District Planned Course Board Approved: March 2010

Greencastle-Antrim School District Planned Course Board Approved: March 2010 Greencastle-Antrim School District Planned Course Board Approved: March 2010 Course Title: Pre-Algebra Grade Levels: 7 and 8 Course materials: Textbooks,, Teacher-Generated Materials, Computer Programs

More information

Minitab 17 commands Prepared by Jeffrey S. Simonoff

Minitab 17 commands Prepared by Jeffrey S. Simonoff Minitab 17 commands Prepared by Jeffrey S. Simonoff Data entry and manipulation To enter data by hand, click on the Worksheet window, and enter the values in as you would in any spreadsheet. To then save

More information

Name Date Types of Graphs and Creating Graphs Notes

Name Date Types of Graphs and Creating Graphs Notes Name Date Types of Graphs and Creating Graphs Notes Graphs are helpful visual representations of data. Different graphs display data in different ways. Some graphs show individual data, but many do not.

More information

5 th Grade Math Pacing Guide

5 th Grade Math Pacing Guide 00-0 First Nine Weeks Lessons - A Compose and order integers, decimals to the nearest ten thousandths, like and B C Identify factors and multiples of whole numbers F A C D D Determine the value of variables

More information

Frequency Distributions and Graphs

Frequency Distributions and Graphs //05 C H A P T E R T W O s and s and Outline CHAPTER - Organizing Data - Histograms, Polygons, and - Other Types of -4 Paired Data and Scatter Plots Learning Objectives Organize data using a frequency

More information

An Introduction to R 2.2 Statistical graphics

An Introduction to R 2.2 Statistical graphics An Introduction to R 2.2 Statistical graphics Dan Navarro (daniel.navarro@adelaide.edu.au) School of Psychology, University of Adelaide ua.edu.au/ccs/people/dan DSTO R Workshop, 29-Apr-2015 Scatter plots

More information

Interactive Math Glossary Terms and Definitions

Interactive Math Glossary Terms and Definitions Terms and Definitions Absolute Value the magnitude of a number, or the distance from 0 on a real number line Addend any number or quantity being added addend + addend = sum Additive Property of Area the

More information

QUADRATIC AND CUBIC GRAPHS

QUADRATIC AND CUBIC GRAPHS NAME SCHOOL INDEX NUMBER DATE QUADRATIC AND CUBIC GRAPHS KCSE 1989 2012 Form 3 Mathematics Working Space 1. 1989 Q22 P1 (a) Using the grid provided below draw the graph of y = -2x 2 + x + 8 for values

More information

LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA

LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA LAB 1 INSTRUCTIONS DESCRIBING AND DISPLAYING DATA This lab will assist you in learning how to summarize and display categorical and quantitative data in StatCrunch. In particular, you will learn how to

More information

Overview. Frequency Distributions. Chapter 2 Summarizing & Graphing Data. Descriptive Statistics. Inferential Statistics. Frequency Distribution

Overview. Frequency Distributions. Chapter 2 Summarizing & Graphing Data. Descriptive Statistics. Inferential Statistics. Frequency Distribution Chapter 2 Summarizing & Graphing Data Slide 1 Overview Descriptive Statistics Slide 2 A) Overview B) Frequency Distributions C) Visualizing Data summarize or describe the important characteristics of a

More information

2011 Excellence in Mathematics Contest Team Project Level II (Below Precalculus) School Name: Group Members:

2011 Excellence in Mathematics Contest Team Project Level II (Below Precalculus) School Name: Group Members: 011 Excellence in Mathematics Contest Team Project Level II (Below Precalculus) School Name: Group Members: Reference Sheet Formulas and Facts You may need to use some of the following formulas and facts

More information

Themes in the Texas CCRS - Mathematics

Themes in the Texas CCRS - Mathematics 1. Compare real numbers. a. Classify numbers as natural, whole, integers, rational, irrational, real, imaginary, &/or complex. b. Use and apply the relative magnitude of real numbers by using inequality

More information

Homework set 4 - Solutions

Homework set 4 - Solutions Homework set 4 - Solutions Math 3200 Renato Feres 1. (Eercise 4.12, page 153) This requires importing the data set for Eercise 4.12. You may, if you wish, type the data points into a vector. (a) Calculate

More information

End-of-Year Assessment Goals

End-of-Year Assessment Goals End-of-Year Assessment Goals The End-of-Year Assessment (pages 24 241) provides an additional opportunity that you may use as part of your balanced assessment plan. It covers some of the important concepts

More information

I can solve simultaneous equations algebraically and graphically. I can solve inequalities algebraically and graphically.

I can solve simultaneous equations algebraically and graphically. I can solve inequalities algebraically and graphically. B I can factorise and expand complex expressions. I can factorise Quadratics I can recognise the Difference of Two Squares (D.O.T.S) simultaneous equations algebraically and graphically. inequalities algebraically

More information

MATH 117 Statistical Methods for Management I Chapter Two

MATH 117 Statistical Methods for Management I Chapter Two Jubail University College MATH 117 Statistical Methods for Management I Chapter Two There are a wide variety of ways to summarize, organize, and present data: I. Tables 1. Distribution Table (Categorical

More information

E D. Mathematics Content Standards for California Public Schools. Kindergarten Through Grade Twelve

E D. Mathematics Content Standards for California Public Schools. Kindergarten Through Grade Twelve O B A R D Mathematics Content Standards for California Public Schools O F E D U Kindergarten Through Grade Twelve Adopted by the California State Board of Education December, 1997 GRADE FOUR 15 Grade Four

More information

Answers. Investigation 2. ACE Assignment Choices. Applications. number of months by 12 to convert to years. 1

Answers. Investigation 2. ACE Assignment Choices. Applications. number of months by 12 to convert to years. 1 Answers Investigation ACE Assignment Choices Problem. Core 4 Problem. Core 5 7, 0, 3 Other Extensions 4; unassigned choices from previous problems Problem.3 Core 8, Other unassigned choices from previous

More information

Will Landau. January 24, 2013

Will Landau. January 24, 2013 Iowa State University January 24, 2013 Iowa State University January 24, 2013 1 / 30 Outline Iowa State University January 24, 2013 2 / 30 statistics: the use of plots and numerical summaries to describe

More information

APS Seventh Grade Math District Benchmark Assessment NM Math Standards Alignment

APS Seventh Grade Math District Benchmark Assessment NM Math Standards Alignment APS Seventh Grade Math District Benchmark NM Math Standards Alignment SEVENTH GRADE NM STANDARDS Strand: NUMBER AND OPERATIONS Standard: Students will understand numerical concepts and mathematical operations.

More information

The Basics of Plotting in R

The Basics of Plotting in R The Basics of Plotting in R R has a built-in Datasets Package: iris mtcars precip faithful state.x77 USArrests presidents ToothGrowth USJudgeRatings You can call built-in functions like hist() or plot()

More information

Page 1. Graphical and Numerical Statistics

Page 1. Graphical and Numerical Statistics TOPIC: Description Statistics In this tutorial, we show how to use MINITAB to produce descriptive statistics, both graphical and numerical, for an existing MINITAB dataset. The example data come from Exercise

More information

Middle School Mathematics Trimester 2 Subject Overview

Middle School Mathematics Trimester 2 Subject Overview 1 Class 7 Linear Graphs Sequences Data Handling Perimeter and Area Read and plot coordinates of points determined by geometric information in all four quadrants Generate coordinate pairs that satisfy a

More information

For more info and downloads go to: Gerrit Stols

For more info and downloads go to:   Gerrit Stols For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It

More information

New Jersey Core Curriculum Content Standards for Mathematics Grade 7 Alignment to Acellus

New Jersey Core Curriculum Content Standards for Mathematics Grade 7 Alignment to Acellus New Jersey Core Curriculum Content Standards for Mathematics http://www.nj.gov/education/aps/cccs/math/ Standard 4.1.7: Number And Numerical Operations A. Number Sense 1. Extend understanding of the number

More information

Algebra 1, 4th 4.5 weeks

Algebra 1, 4th 4.5 weeks The following practice standards will be used throughout 4.5 weeks:. Make sense of problems and persevere in solving them.. Reason abstractly and quantitatively. 3. Construct viable arguments and critique

More information

Scope and Sequence for the Maryland Voluntary State Curriculum for Mathematics

Scope and Sequence for the Maryland Voluntary State Curriculum for Mathematics Scope and Sequence for the Maryland Voluntary State Curriculum for Mathematics The following chart provides an overview of where within Prentice Hall Course 1 Mathematics each of the Objectives of the

More information

St Aloysius College. Mark: Name: Grade 9 Mathematics COMMON ASSESSMENT TASK Graphing Linear Algebra

St Aloysius College. Mark: Name: Grade 9 Mathematics COMMON ASSESSMENT TASK Graphing Linear Algebra St Aloysius College Name: Grade 9 Mathematics COMMON ASSESSMENT TASK Graphing Linear Algebra Mark: Instructions: Neatly show all working out and answers in the space provided. CALCULATORS ALLOWED / Question

More information

Engineered Diffusers Intensity vs Irradiance

Engineered Diffusers Intensity vs Irradiance Engineered Diffusers Intensity vs Irradiance Engineered Diffusers are specified by their divergence angle and intensity profile. The divergence angle usually is given as the width of the intensity distribution

More information

Correlation of the ALEKS courses Algebra 1 and High School Geometry to the Wyoming Mathematics Content Standards for Grade 11

Correlation of the ALEKS courses Algebra 1 and High School Geometry to the Wyoming Mathematics Content Standards for Grade 11 Correlation of the ALEKS courses Algebra 1 and High School Geometry to the Wyoming Mathematics Content Standards for Grade 11 1: Number Operations and Concepts Students use numbers, number sense, and number

More information

Visualizing Data: Freq. Tables, Histograms

Visualizing Data: Freq. Tables, Histograms Visualizing Data: Freq. Tables, Histograms Engineering Statistics Section 1.2 Josh Engwer TTU 25 January 2016 Josh Engwer (TTU) Visualizing Data: Freq. Tables, Histograms 25 January 2016 1 / 23 Descriptive

More information

Beal High School. Mathematics Department. Scheme of Work for years 7 and 8

Beal High School. Mathematics Department. Scheme of Work for years 7 and 8 Beal High School Mathematics Department Scheme of Work for years 7 and 8 Version for web site March 2008 Note: This SoW covers levels 4 to 7. teachers will often dip in to level 8, especially as extension

More information

MATH11400 Statistics Homepage

MATH11400 Statistics Homepage MATH11400 Statistics 1 2010 11 Homepage http://www.stats.bris.ac.uk/%7emapjg/teach/stats1/ 1.1 A Framework for Statistical Problems Many statistical problems can be described by a simple framework in which

More information

MATHEMATICS Grade 7 Advanced Standard: Number, Number Sense and Operations

MATHEMATICS Grade 7 Advanced Standard: Number, Number Sense and Operations Standard: Number, Number Sense and Operations Number and Number Systems A. Use scientific notation to express large numbers and numbers less than one. 1. Use scientific notation to express large numbers

More information

Basic Medical Statistics Course

Basic Medical Statistics Course Basic Medical Statistics Course S0 SPSS Intro November 2013 Wilma Heemsbergen w.heemsbergen@nki.nl 1 13.00 ~ 15.30 Database (20 min) SPSS (40 min) Short break Exercise (60 min) This Afternoon During the

More information