Let’s review some of the statistics you’ve learned in your first class: Univariate analyses (single variable) are done both graphically and numerically.

Slides:



Advertisements
Similar presentations
Displaying Data Objectives: Students should know the typical graphical displays for the different types of variables. Students should understand how frequency.
Advertisements

Introduction to R Graphics
Chapter 2 Minitab for Data Analysis KANCHALA SUDTACHAT.
1.1 Displaying and Describing Categorical & Quantitative Data.
© 2002 Prentice-Hall, Inc.Chap 2-1 Basic Business Statistics (8 th Edition) Chapter 2 Presenting Data in Tables and Charts.
Chapter 2 Presenting Data in Tables and Charts
Organizing Numerical Data Numerical Data Ordered Array Stem and Leaf Display Frequency Distributions Cumulative Distributions Histograms.
Descriptive Statistics In SAS Exploring Your Data.
Descriptive statistics (Part I)
QM 1 - Intro to Quant Methods Graphical Descriptive Statistics Charts and Tables Dr. J. Affisco.
The gchart Procedure The gchart Procedure is used to create bar charts of various types (it can also create pie charts. It’s most basic form would look.
Graphing Examples Categorical Variables
Graphing A Practical Art. Graphing Examples Categorical Variables.
Week 3 Topic - Descriptive Procedures Program 3 in course notes Cody & Smith (Chapter 2)
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.
Objective To understand measures of central tendency and use them to analyze data.
Chapter 2 Presenting Data in Tables and Charts. 2.1 Tables and Charts for Categorical Data Mutual Funds –Variables? Measurement scales? Four Techniques.
Introduction to SAS BIO 226 – Spring Outline Windows and common rules Getting the data –The PRINT and CONTENT Procedures Manipulating the data.
 Quantitative Numbers  Qualitative Descriptions.
Univariate Data Chapters 1-6. UNIVARIATE DATA Categorical Data Percentages Frequency Distribution, Contingency Table, Relative Frequency Bar Charts (Always.
VCE Further Maths Chapter Two-Bivariate Data \\Servernas\Year 12\Staff Year 12\LI Further Maths.
Statistics Unit 2: Organizing Data Ms. Hernandez St. Pius X High School
Ogive, Stem and Leaf plot & Crosstabulation. Ogive n An ogive is a graph of a cumulative distribution.. n The data values are shown on the horizontal.
© 2003 Prentice-Hall, Inc.Chap 2-1 Chapter 2 Presenting Data in Tables and Charts Basic Business Statistics (9 th Edition)
Business Statistics, A First Course (4e) © 2006 Prentice-Hall, Inc. Chap 2-1 Chapter 2 Presenting Data in Tables and Charts Statistics For Managers 4 th.
Unit 4 Statistical Analysis Data Representations.
Notes 9.6 – Statistics and Data - Graphically. I. Variables A.) Def: characteristics of individuals being identified or measured. 1.) CATEGORICAL – Class.
BUSINESS STATISTICS I Descriptive Statistics & Data Collection.
Lecture 3 Topic - Descriptive Procedures Programs 3-4 LSB 4:1-4.4; 4:9:4:11; 8:1-8:5; 5:1-5.2.
Chapter 3 – Graphical Displays of Univariate Data Math 22 Introductory Statistics.
Announcements First quiz next Monday (Week 3) at 6:15-6:45 Summary:  Recap first lecture: Descriptive statistics – Measures of center and spread  Normal.
Tips & Tricks From your fellow SAS users 9/30/2004.
Sampling ‘Scientific sampling’ is random sampling Simple random samples Systematic random samples Stratified random samples Random cluster samples What?
Chapter 8: Using Basic Statistical Procedures “33⅓% of the mice used in the experiment were cured by the test drug; 33⅓% of the test population were unaffected.
SAS/GRAPH The Basics. Today’s Topics GOPTIONS GPLOT GCHART GCONTOUR G3D.
Math 4030 – 7b Normality Issues (Sec. 5.12) Properties of Normal? Is the sample data from a normal population (normality)? Transformation to make it Normal?
Unit 2 Test Topics: Statistics Honors Analysis. Conditional Probability Geometric Probability ◦ triangles ◦ triangles ◦Basic area formulas.
Histograms, Frequency Polygons, and Ogives 2-2 Graphs Note: This PowerPoint is only a summary and your main source should be the book. Instructor: Alaa.
Graphs with SPSS Aravinda Guntupalli. Bar charts  Bar Charts are used for graphical representation of Nominal and Ordinal data  Height of the bar is.
2.3 Other Types of Graphs Instructor: Alaa saud Note: This PowerPoint is only a summary and your main source should be the book.
Descriptive Statistics – Graphic Guidelines Pie charts – qualitative variables, nominal data, eg. ‘religion’ Bar charts – qualitative or quantitative variables,
Lecture 3 Topic - Descriptive Procedures
Descriptive Statistics: Tabular and Graphical Methods
Relative Cumulative Frequency Graphs
Chapter 1 A Review of Basic Concepts (Optional).
BUSINESS MATHEMATICS & STATISTICS.
Warm Up.
Unit 4 Statistical Analysis Data Representations
Lesson 3 Overview Descriptive Procedures Controlling SAS Output
2.2 Bar Charts, Pie Charts, and Stem and Leaf Diagram
Lecture 2 Topics - Descriptive Procedures
Statistical Reasoning
Histograms and graph summary
Chapter 2 Presenting Data in Tables and Charts
Frequency Distributions and Graphs
Treat everyone with sincerity,
Lecture 2 Topics - Descriptive Procedures
Hans Baumgartner Penn State University
Data Collection and Histograms
SAS를 이용한 자료의 탐색 김 호 서울대학교 보건대학원.
Let’s continue to review some of the statistics you’ve learned in your first class: Bivariate analyses (two variables measured at a time on each observation)
Presentation of Data.
PENGOLAHAN DAN PENYAJIAN Presenting Data
PENGOLAHAN DAN PENYAJIAN Presenting Data
Statistics is... a collection of techniques for planning experiments, obtaining data, and then organizing, summarizing, presenting, analyzing, interpreting,
Lecture 2 Topics - Descriptive Procedures
Presentation transcript:

Let’s review some of the statistics you’ve learned in your first class: Univariate analyses (single variable) are done both graphically and numerically. For categorical variables, use bar graphs and percentages. SAS does this with PROC GCHART and PROC FREQ PROC GCHART DATA=padgett; VBAR marsh; title ‘Vertical Bar Graph’; PROC GCHART DATA=padgett; HBAR marsh; title ‘Horizontal Bar Graph’; PROC GCHART DATA=padgett; HBAR plantht; title ‘Histogram (sort of)’; *choose your own midpoints with the option /midpoints= a to b by … ; PROC FREQ DATA=padgett; TABLES marsh type flower; run; quit;

For quantitative variables, use histograms, stem and leaf plots, boxplots (especially for comparisons - more later), quantile plots (probability plots). SAS does this with PROCs UNIVARIATE, MEANS, SUMMARY, TABULATE, REPORT, etc. Right now, we’ll concentrate on UNIVARIATE: PROC UNIVARIATE DATA=padgett; VAR plantht totmass; title ‘Lots of Statistics…’; run; quit; PROC UNIVARIATE DATA=padgett NORMAL PLOT; VAR plantht totmass; title ‘With the NORMAL and PLOT options’; run; quit; *Better histogram is done in UNIVARIATE with the HISTOGRAM statement; PROC UNIVARIATE DATA=padgett; VAR plantht totmass; HISTOGRAM plantht /MIDPOINTS 0 to 150 by 25 NORMAL; INSET MEAN=‘Mean’ (7.2) STD=‘Standard Deviation’ (7.2)/Font=‘Courier’ POS=NW HEIGHT=3; run; quit;

UNIVARIATE also gives very nice normal quantile and normal probability plots: PROC UNIVARIATE DATA=padgett; VAR plantht totmass; QQPLOT totmass; PROBPLOT plantht; run; quit;