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.

Slides:



Advertisements
Similar presentations
T T02-03 Histogram (Equal Classes) Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram by.
Advertisements

Bar Graphs and Line Graphs Lesson 7-4. Bar Graph A bar graph uses vertical or horizontal bars to display numerical information. Bar graphs can be used.
Creating a Histogram using the Histogram Function.
Probability and Statistics Dr. Saeid Moloudzadeh Frequency table and graphs 1 Contents Descriptive Statistics Axioms of Probability Combinatorial.
Physics 310 The Gaussian Distribution. Physics 310 Section 2.2 Consider those (common) cases where the probability of success in a single trial,, is not.
Checking the Required Conditions. Check these 3 boxes.
T T02-06 Histogram (6 SD) Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram by observation,
T T02-04 Histogram (User Selected Classes) Purpose Allows the analyst to analyze quantitative data by summarizing it in sorted format, scattergram.
Data “Do not put your faith in what statistics say until you have carefully considered what they do not say. ” ~William W. Watt.
R Example Descriptive Statistics Frequency and Histogram Diagrams Standard Deviation.
Confidence Intervals I 2/1/12 Correlation (continued) Population parameter versus sample statistic Uncertainty in estimates Sampling distribution Confidence.
 An indication of how “exactly” you can measure a piece of data  More precise measurements are those that are measured to a smaller increment of a unit.
 Accuracy of a measurement: ◦ An indication of how close the measurement is to the accepted value ◦ Percentage difference can be calculated to give a.
What do Centurions think about our school spirit? Diana Tapia Period
Statistics Frequency and Distribution. We interrupt this lecture for the following… Significant digits You should not report numbers with more significant.
Statistics. Key statistics and their purposes Chi squared test: determines if a data set is random or accounted for by an unwanted variable Standard deviation:
Warm Up 1.The sum of the values in a data set divided by the number of data values gives the ________________________. 2.Find the mean, median, mode, and.
Chapter 2 Section 2.1: Organizing qualitative data Section 2.2: Organizing quantitative data Section 2.3: skip Section 2.4: Misrepresentations of data.
Chapter 6: Random Errors in Chemical Analysis CHE 321: Quantitative Chemical Analysis Dr. Jerome Williams, Ph.D. Saint Leo University.
Statistics in Biology. Histogram Shows continuous data – Data within a particular range.
Random Sampling Approximations of E(X), p.m.f, and p.d.f.
Total Population of Age (Years) of People. Pie Chart of Males and Females that Smoke Systematic Gender Sample Total Population: 32.
Student Ratings on Century High School Lunch Allen Maceda Isaac Avila Brian Pineda Period
Section 13.7 Stem and Leaf and Histograms Objective: Students will make stem and leaf plots and histograms and use these to answer data questions. Standard:
MDH Chapter 1EGR 252 Fall 2015 Slide 1 Probability and Statistics for Engineers  Descriptive Statistics  Measures of Central Tendency  Measures of Variability.
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.
Chapter 3 Statistical Models or Quality Control Improvement.
Histograms and Distributions Experiment: Do athletes have faster reflexes than non-athletes? Questions: - You go out and 1st collect the reaction time.
MARCH 18, 2014 DATA ANALYSIS. WHAT TO DO WITH DATA Take a look at your data Histogram Descriptive statistics Mean, mode, range, standard deviation/standard.
EXCEL CHAPTER 6 ANALYZING DATA STATISTICALLY. Analyzing Data Statistically Data Characteristics Histograms Cumulative Distributions Classwork: 6.1, 6.6,
Statistics Descriptive Statistics. Statistics Introduction Descriptive Statistics Collections, organizations, summary and presentation of data Inferential.
You measure the index of refraction of a piece of glass by two independent methods. The two results are: 1.n = / (method 1) 2.n = /-
Homework Line of best fit page 1 and 2.
Bar Graphs and Line Graphs
Review 1. Describing variables.
MAT 135 Introductory Statistics and Data Analysis Adjunct Instructor
Probability and Statistics for Engineers
Precision of a measurment
Quantitative Skills : Graphing
Zebrafish Research Data Analysis Choices.
Statistical Analysis – Part 2
Stem/Leaf plots and frequency tables/Histograms
Probability and Statistics for Engineers
Probability Die Difference and Uncertainty
The Practice of Statistics
Multiplication of Decimals
Probability and Statistics for Engineers
Types of Graphs… and when to use them!.
Probability and Statistics for Engineers
Probability and Statistics for Engineers
CHAPTER- 3.1 ERROR ANALYSIS.
General Concept On Operational Excellence Open for discussion.
Part I Review Highlights, Chap 1, 2
Lecture 1: Descriptive Statistics and Exploratory
Converting Fractions and Decimals
Different kinds of graphs
Single Variable Statistics
Probability and Statistics for Engineers
The lognormal distribution
CHAPTER – 1.2 UNCERTAINTIES IN MEASUREMENTS.
Histograms Learning Target
Probability and Statistics for Engineers
Topic 7: Visualization Lesson 2 – Frequency Charts in Excel
Trials & laws & Large Numbers (Large Number Theory)
Experiment #2 Resistor Statistics
Types of Errors And Error Analysis.
Statistical Models or Quality Control Improvement
Higher spatial frequency tuning of the contralateral responses also found in anesthetized animals. Higher spatial frequency tuning of the contralateral.
python
CHAPTER – 1.2 UNCERTAINTIES IN MEASUREMENTS.
Presentation transcript:

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 0.2, etc.) and the digit frequencies (1st through 6th decimal places) Which generator (if either) is the better one? BONUS: Make 3-D plot of random triplets (Excel can do it) and re-judge which better IBM = RANDU

What do I mean by value histogram? FAQ: How many random #’s to generate? >=10,000 Make this plot for both generators Include error bars Statistical uncertainties are defined by √N Agreement among all bins good if within 1-2 ‘sigma’ Also, 6 x 2 plots for decimals: How often 0,1..9? random.org and Kaleidagraph Expectation values should be 1,000 per bin for 10,000 numbers (10%), so expected error is ~31.623. Use agreement within errors or not to determine goodness of generator (either theoretical error or observed)

Extra Credit