Graphing Parameters Titles X-Axis Title Y-Axis Title Legend Scales Color Gridlines library(help="graphics") Basic Chart Types The R Graphics Package LineHistogram.

Slides:



Advertisements
Similar presentations
Excel 2007 Graphs & Charts. TYPES OF CHARTS Column Bar Pie Line.
Advertisements

T-3 Histograms. Histogram Basics A histogram is a special type of bar graph that measures the frequency of data Horizontal axis: represents values in.
Fundamental Features of Graphs All graphs have two, clearly-labeled axes that are drawn at a right angle. –The horizontal axis is the abscissa, or X-axis.
Excel Graphing Tutorial Lauren Ottaviano Fall 2012.
Customizing Graphs Base graphics options. plot() The workhorse plotting function plot(x) plots values of x in sequence or a barplot plot(x, y) produces.
Chapter 6  Chart Terminology  Chart Wizard  Moving Resizing Charts  Editing Charts  Formatting Charts.
Histograms Hours slept Frequency 1 – – – – –
Obj Understand charts and graphs used in business.
Common Page Design. Graphics and Tables Uses: Objects Numbers Concepts Words.
Using Excel to Plot Farrokh Alemi, Ph.D.. Objectives Given a set of data plot a control chart using Excel software.
How to Make a Bar/Line Graph
How to Make School Comparison Graphs in Excel Please follow the instructions as closely as possible. When you get used to using Excel for this then feel.
Creating a Bar Chart On a Mac. Frequency Distribution Create a frequency distribution based on the classes Refer to creating a frequency distribution.
Creating a Bar Chart. Create a frequency distribution based on the classes.
Source Code -Tons of Code Package -More Code -Statistical Functions -Datasets Workspace -Fewer Lines of Code -Capability.
What factors are most responsible for height?
R Example Descriptive Statistics Frequency and Histogram Diagrams Standard Deviation.
Histograms, Frequency Polygons Ogives
Baburao Kamble (Ph.D) University of Nebraska-Lincoln
Chart Components 4.02 Understand charts and graphs used in business.
Graphing. The Important Elements of a Graph  Horizontal Axis (X-Axis)  The Independent Variable. A change in this variable affects the y variable. 
Graphs in Science You Can Do It!!!.
Frequency Polygons and Ogives
Graphing Behavioral Data for FBA/BIP Special Services Baldwin County Public Schools.
GRAPHS FOR LUNCH MAY Menu Rules Checklist Example Creating graphs from your workstation reports Summary Reports Measures Reports Case Details Report.
Making and Understanding Graphs What is a graph? A graph is a “picture” of your data.
Section 2.2: More Graphs and Displays. Objective: To be able to create and analyze a variety of graphical displays. 5. Stem and leaf plot: a way of viewing.
Chapter 4 Graphs!.
16 Graph Skills How to read and understand advanced types of bar charts, area graphs, climographs and triangle graphs How to advance their skills of drawing.
© 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Creating Charts Lecture 19.
Graphing in Science All information and graphics provided by Pearson Education and Lessonplanet.com.
Excel chapter 4.
Designing Effective Graphics Using MATLAB The Cain Project in Engineering and Professional Communication Linda Driskill, Gang Cheng,
Section 2.2 Bar Graphs, Circle Graphs, and Time-Series Graphs 2.2 / 1.
Chart Components 4.02 Understand charts and graphs used in business Revised by A. Moore
Models. make observations and form hypothesis make predictions and perform control experiments reject original hypothesis form theory data support hypothesis.
Bar Graphs Used for comparing separate groups. Axes X- axis: independent variable (what the scientist controls) Horizontal D – dependent R – responding.
Creating a picture of your data
Graph: a visual display of information or data
Graphs and Graphing Data Biology Ms. Haut. Introduction to Graphing Both figures display the same information, but differently. Which figure is easier.
Ggplot2 A cool way for creating plots in R Maria Novosolov.
Creating a Scatter Plot On a Mac. Data in Excel Spreadsheet Insert the variable you want on the x-axis in the left column Insert the variable you want.
Histograms. Number of Flowers – 1213 – 1718 – 2223 – 2728 – 32 Height (in centimeters) Flower Heights The x-axis label shows the groups.
Chapter 15: Spreadsheet and Worksheet Basics Lesson 96: Worksheets with Charts © 2010, 2006 South-Western, Cengage Learning.
Presenting Data.
Histograms, Frequency Polygons, and Ogives. What is a histogram?  A graphic representation of the frequency distribution of a continuous variable. Rectangles.
Histograms, Frequency Polygons, and Ogives
What factors are most responsible for height?. Model Specification ERROR??? measurement error model error analysis unexplained unknown unaccounted for.
Outline Research Question: What determines height? Data Input Look at One Variable Compare Two Variables Children’s Height and Parents Height Children’s.
Drawing a Bar Graph Data Management. Bar Graphs Used to compare numbers directly.
CHART COMPONENTS Lesson 6 – Working With Charts and Graphics, continued.
Bell Ringer October 1 st Write down the components that are missing from graph A and B GRAPH A GRAPH B.

Advanced Charts Lesson 9. Objectives 1. Create charts by using data from other applications. 2. Modify chart types. 3. Add and modify chart options. 4.
GRAPHING NOTES Understanding and constructing graphs.
Graphs and Graphing Data Pre-AP Biology Ms. Haut.
CHART COMPONENTS Lesson 6 – Working With Charts and Graphics, continued.
 Line Graphs: are used to show something changing over time.  Bar Graphs: are used to show a comparison between two or more variables.  Pie Chart:
What are the differences between bar graphs and picture graphs?
Chart Components 3.03 Identify charts and graphs used in business.
INTRODUCTTION TO CHARTS AND GRAPHS. Data Series I S IT A CHART OR A GRAPH ? A graph is a feature of a chart used to plot data. The chart is the total.
Creating a picture of your data
Title Slide Title slide: Add notes here..
Chart Components Lesson 6 – Working With Charts and Graphics, continued 4.02 Chart Components.
Chart Components Lesson 6 – Working With Charts and Graphics, continued 4.02 Chart Components.
Chart Components 4.02 Understand charts and graphs used in business.
Chart Components Lesson 6 – Working With Charts and Graphics, continued 4.02 Chart Components.
Statistical Tables and Graphs
Chart Components 4.02 Understand charts and graphs used in business.
Simulate Multiple Dice
Presentation transcript:

Graphing Parameters Titles X-Axis Title Y-Axis Title Legend Scales Color Gridlines library(help="graphics") Basic Chart Types The R Graphics Package LineHistogram ScatterBox

Histogram of NFL Offense hist(nfl$OffPtsA,freq=F, breaks = 25, ylim = c(0,0.14), col = "blue") curve(dnorm(x, mean=mean(nfl$OffPtsA), sd=sd(nfl$OffPtsA)), col="purple", add=T)

Grammar of Graphics formations Legend Axes Seven Components

The anatomy of a graph ggplot2 Components

In ggplot2 a plot is made up of layers. ggplot2 Plot

ggplot2: geoms Ch4HistogramDensityBoxplotScatter Basic Labels Colors

ggplot2: histogram

Histograms: NFL Example Create the plot object: nflHistogram <- ggplot(nfl, aes(OffPtsA)) + opts(legend.position = "none") Add the graphical layer: nflHistogram + geom_histogram(binwidth = 0.4 ) + labs(x = "NFL Offense Points", y = "Frequency")

Scatterplot: NFL Example

rCharts: Scatterplot