Histograms Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.

Slides:



Advertisements
Similar presentations
Random Number Generators Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
Advertisements

Creating a Histogram using the Histogram Function.
Warm Up 1.The data below show the average daily high temperature for Chicago, Illinois, for twelve recent spring and summer months. Construct a stem plot.
Section 2.2 Graphical Displays of Distributions.  Dot Plots  Histograms: uses bars to show quantity of cases within a range of values  Stem-and-leaf.
Manufacturing Variation Plotting a Normal Distribution.
Checking the Required Conditions. Check these 3 boxes.
Using Microsoft Excel for Marketing Research By William G. Zikmund.
Descriptive Statistics
Total Population of Age (Years) of People that Smoke
A Case Study Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
Monte Carlo Simulation in Excel Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
Statistical Inferences Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
Statistics 300: Introduction to Probability and Statistics Section 2-2.
Graphing Examples Categorical Variables
Graphing A Practical Art. Graphing Examples Categorical Variables.
How to build graphs, charts and plots. For Categorical data If the data is nominal, then: Few values: Pie Chart Many Values: Pareto Chart (order of bars.
Furniture in Our Homes Histogram How often is the furniture rearranged in your home? Box & Whisker How many chairs are in your home? Pie Chart W hat type.
©The McGraw-Hill Companies, Inc. 2008McGraw-Hill/Irwin Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 3.
Graphing Review Part 2 Types of Graphs.
CS1100: Computer Science and Its Applications Creating Graphs and Charts in Excel Martin Schedlbauer, Ph.D.
HOW OFTEN DO I SMOKE BY: MIN PYON IME 301 DATA COLLECTION AND ANALYSIS PROJECT Application of Statistics in Engineering, winter 2010 Dr. Rosencrantz.
Discrete Distribution Functions Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
June 21, Objectives  Enable the Data Analysis Add-In  Quickly calculate descriptive statistics using the Data Analysis Add-In  Create a histogram.
Unit 2 Section : More Graphs and Displays  Several types of graphs are used in statistics besides histograms, frequency polygons, and ogives.
Math 145 September 11, Recap  Individuals – are the objects described by a set of data. Individuals may be people, but they may also be animals.
Latin Hypercube Sampling Example Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1.
Fitting Input Distributions Jake Blanchard University of Wisconsin - Madison Spring 2008.
Chapter 3: Organizing Data. Raw data is useless to us unless we can meaningfully organize and summarize it (descriptive statistics). Organization techniques.
©The McGraw-Hill Companies, Inc. 2008McGraw-Hill/Irwin Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 2.
1 M04- Graphical Displays 2  Department of ISM, University of Alabama, 2003 Graphical Displays of Data.
Plots for 14 day apigenin data. Stair Plot for 14 Day Data # of mice is the number of mice that formed less than or equal to the volume of bone indicated.
Exoplanets with Known M Min and a as of April 2014 From the ExoPlanet Catalog at
Copyright © 2014 Pearson Education. All rights reserved Picturing Distributions of Data LEARNING GOAL Be able to create and interpret basic.
Statistical Analysis for Business & Economics: Summer 2010 Statistical Analysis for Business & Economics: Spring 2011 STATISTICAL ANALYSIS FOR BUS & ECON.
Ch. 3 Histograms In a histogram, the areas of the blocks represent percentages. –Example: Ex. Set B #3 Types of variables: –Qualitative vs. quantitative.
Descriptive Statistics  Individuals – are the objects described by a set of data. Individuals may be people, but they may also be animals or things. 
Bar Graphs and Histograms. Bar Graphs Bar Graph – a graph that uses bars to show data in categories Example: Favorite color of the class What month that.
Write a statistical question you could ask your classmates about the movies they like.
DATA ABOUT US DAY 5 Histograms. Differences between a Bar graph and a Histogram Histograms are a great way to show results of continuous data, such as:continuous.
Cell Diameters and Normal Distribution. Frequency Distributions a frequency distribution is an arrangement of the values that one or more variables take.
Sec. 2.2 More Graphs and Displays Mr. Ricks Madison High School.
Statistics and Organization of Data Statistics: The gathering, organizing, analyzing, and presentation of numerical information Variable: Any particular.
Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 2.
Statistical Methods Michael J. Watts
Statistical Methods Michael J. Watts
Homework #2 Study the random number generator in C++ vs. the other one I have provided you (IBM) Make histograms of value frequencies (0 to 0.1, 0.1 to.
Basics of histograms and frequency tables
Elementary Applied Statistics
Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 2.
Graphing.
Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 2.
entry # Award Project Name location – (City, State)
Descriptive Statistics
Descriptive Statistics
Introduction to MATLAB Programming
Descriptive Statistics
Descriptive Statistics
CHAPTER- 3.1 ERROR ANALYSIS.
Using Microsoft Excel for Marketing Research
The lognormal distribution
Descriptive Statistics
Probability Plot Examples
Histograms are plots that show the distribution of data.
Using Excel to Create Graphs and Displays
Design by : Ms Sheema Aftab
Descriptive Statistics
Topic 7: Visualization Lesson 2 – Frequency Charts in Excel
Math 145 January 24, 2007.
Math 341 January 24, 2007.
Describing Data: Frequency Tables, Frequency Distributions, and Graphic Presentation Chapter 2.
Presentation transcript:

Histograms Jake Blanchard Spring 2010 Uncertainty Analysis for Engineers1

Creating Histograms Distribution functions are essentially histograms, so we should get some practice with histograms We’ll use solar insolation as an example ◦ Daily insolation averaged over a month ◦ Data is for Madison, WI ◦ Units are W-hr/m 2 Uncertainty Analysis for Engineers2

Small Set Data on next slide is for January, years Divide results into bins Count instances in each bin Plot, usually with bar chart Uncertainty Analysis for Engineers3

January Insolation – YearInsolation (W-h/m 2 ) Uncertainty Analysis for Engineers4

Categories entry entry entries entry Uncertainty Analysis for Engineers5

Histogram for Full Data Set (Excel) Uncertainty Analysis for Engineers6

Excel Go to Data/Data Analysis Then pick Histogram Uncertainty Analysis for Engineers7

Matlab data=xlsread('histograms.xlsx'); hist(data(:,2), 30) Uncertainty Analysis for Engineers8

Matlab What if we just want the month by month data? Uncertainty Analysis for Engineers9 January January June

Script z=find(data(:,1)==1); [N1,X1]=hist(data(z,2),10); z=find(data(:,1)==6); [N6,X6]=hist(data(z,2),10); bar(X1,N1) hold on bar(X6,N6) Uncertainty Analysis for Engineers10