################################## # Advanced graphing commands ##################################

Size: px
Start display at page:

Download "################################## # Advanced graphing commands ##################################"

Transcription

1 ################################## # Advanced graphing commands ################################## trillium <- read.table(" attach( trillium ) # Some detailed control over graphs par(mfrow=c(1,1)) boxplot( stem ~ site, range=0 ) # range=0 has whiskers stretch to extremes # default is range=1.5, whiskers out 1.5 IQR from box boxplot( stem ~ site, xlab="site",ylab="stem length (cm)" ) axis( side=4, at=(2.54*(1:3)), labels=1:3, tck=0.01, mgp=c(-1,0,-0.1)) # help( axis ) # help( par ) # tck is par command for tick lengths and direction # mgp is par command to determine axis title, labels, and line location mtext("inches",side=4,line=.7,font=2, col="magenta") # help( mtext ) # font=2 is bold font, line is location of margin text str(colors()) chr [1:657] "white" "aliceblue" "antiquewhite" "antiquewhite1"...colors() 1

2 stem length (cm) inches site boxplot( stem ~ site, axes=f ) axis( side=1, at=1:4,labels=1:4, tck=0, lty=0) axis( side=2, at=1:9,labels=1:9 ) mtext("site",side=1) mtext("stem length (cm)", side=2, line=2.2 ) axis( side=2, at=c(2,4,6,8),tck=1, lty=3, lwd=.2) # tck=1 draws grid lines across graph, see help(par) Stem length (cm) Site

3 # Controlling multiple graphs on a page without mfrow() layout( rbind( c(1,2), c(3,4) ), height=c(1,2), width=c(1.5,1)) hist(stem) hist(leaf) plot(leaf, stem, pty="s"); abline( lm( stem ~ leaf ) ) title( main=expression( beta[0] + beta[1]*leaf ) ) plot(stem, leaf); fit <- lm( leaf ~ stem ) abline( fit ) title( main=substitute( paste(beta[0]==beta0," and ",beta[1]==beta1), list(beta0=signif(fit$coef[1],3),beta1=signif(fit$coef[2],3)) ) ) Frequency Histogram of stem Frequency Histogram of stem leaf 0 1 leaf and stem leaf leaf stem 3

4 layout( rbind( c(1,1,2,2),c(0,3,3,0) ), width=c(1,2,2,1), height=c(3,4)) pie( table( flower) ) boxplot( stem~flower ) plot(leaf,stem, xaxt="n" ) # no x axis labels title("not a true Stem-and-leaf plot" ) layout( 1 ) mtext(side=3,"three graphs", line=2.3, cex=1.5 ) Three graphs s w p p s w Not a true Stem-and-leaf plo stem leaf 4

5 x <- seq(from=-pi,to=pi,length=10) y <- seq(from=0,to=(2*pi),length=10) xy.grid <- expand.grid(x=x,y=y) dim(xy.grid) z <- sin(xy.grid[,1])+ cos(xy.grid[,2]) zmat <- matrix(z,ncol=10,byrow=f) layout(rbind(c(1,2),c(3,4))) contour(x,y,zmat) persp(x,y,zmat) x <- seq(from=-pi,to=pi,length=50) y <- seq(from=0,to=(2*pi),length=50) xy.grid <- expand.grid(x=x,y=y) dim(xy.grid) z <- sin(xy.grid[,1])+ cos(xy.grid[,2]) zmat <- matrix(z,ncol=50,byrow=f) contour(x,y,zmat,nlevels=15) persp(x,y,zmat, theta=40, phi=40, r=4) # theta and phi control angle of view # r controls distance from box 5

6 zmat y zmat y x zmat x y layout(1) persp(x,y,zmat, theta=40, phi=40, r=4) layout(c(1,2),respect=t) # respect=t forces aspect ratio to be the same image(x,y,zmat) plot( runif(100), runif(100) ) x 6

7 ########################### # Trellis plots # Go online and get package "lattice" # commercial package S-Plus beat R to the library name "trellis" library( lattice ) candy <- read.table(" attach(candy) Change <- After - Before xyplot( After ~ Before Treatment ) # obvious correlation nothing After cool hot Before xyplot( Change ~ Before Treatment ) # colder people heat up more nothing Change cool 0-1 hot Before 7

8 cloud( Change ~ After * Before Treatment ) # hard to interpret nothing Change Before After cool hot Change Change Before After Before After coplot( After~Before Change, panel=panel.smooth ) Given : Change After Before 8

9 # condition on one continuous variable and one categorical coplot( After ~ Before Change*Treatment, panel=panel.smooth) Given : Change cool After hot nothing Given : Treatment Before 9

10 ############## ## Bird data ############ birds <- read.table(" skip=15, header=t) names( birds ) attach(birds) coplot( wt ~ tl kl, panel=panel.smooth ) Given : kl wt tl # condition on two continuous variables coplot( wt ~ tl kl * bh, panel=panel.smooth) Given : kl wt Given : bh tl 10

11 #install ggplot2 package and load library(ggplot2) # See # 2176_ fc524dc0bc2a140573da38bb.html > str(diamonds) 'data.frame': obs. of 10 variables: $ carat : num $ cut : Ord.factor w/ 5 levels "Fair"<"Good"<..: $ color : Ord.factor w/ 7 levels "D"<"E"<"F"<"G"<..: $ clarity: Ord.factor w/ 8 levels "I1"<"SI2"<"SI1"<..: $ depth : num $ table : num $ price : int $ x : num $ y : num $ z : num > head(diamonds) carat cut color clarity depth table price x y z Ideal E SI Premium E SI Good E VS Premium I VS Good J SI Very Good J VVS > > qplot(carat, price, colour=clarity, alpha=i(1/3), size=depth, data=diamonds) > > qplot(x=color,y=price,geom="boxplot",data=diamonds) > > qplot(x=carat,y=price,colour=clarity,facets=~cut,data=diamonds) > > qplot(x=carat,y=price,colour=clarity,facets=color~cut,data=diamonds) 11

12 12

13 13

14 14

15 ################################## # Advanced graphing commands ################################## trillium <- read.table(" ip=9) # Some detailed control over graphs par(mfrow=c(1,1)) boxplot( stem ~ site, range=0 ) # range=0 has whiskers stretch to extremes # default is range=1.5, whiskers out 1.5 IQR from box boxplot( stem ~ site, xlab="site",ylab="stem length (cm)" ) axis( side=4, at=(2.54*(1:3)), labels=1:3, tck=0.01, mgp=c(-1,0,-0.1)) # help( axis ) # help( par ) # tck is par command for tick lengths and direction # mgp is par command to determine axis title, labels, and line location 15

16 mtext("inches",side=4,line=.7,font=2, col="magenta") # help( mtext ) # font=2 is bold font, line is location of margin text colors() boxplot( stem ~ site, axes=f ) axis( side=1, at=1:4,labels=1:4, tck=0, lty=0) axis( side=2, at=1:9,labels=1:9 ) mtext("site",side=1) mtext("stem length (cm)", side=2, line=2.2 ) axis( side=2, at=c(2,4,6,8),tck=1, lty=3, lwd=.2) # tck=1 draws grid lines across graph, see help(par) # Controlling multiple graphs on a page without mfrow() layout( rbind( c(1,2), c(3,4) ), height=c(1,2), width=c(1.5,1)) hist(stem) hist(leaf) plot(leaf, stem, pty="s"); abline( lm( stem ~ leaf ) ) title( main=expression( beta[0] + beta[1]*leaf ) ) plot(stem, leaf); fit <- lm( leaf ~ stem ) abline( fit ) title( main=substitute( paste(beta[0]==beta0," and ",beta[1]==beta1), list(beta0=signif(fit$coef[1],3),beta1=signif(fit$coef[2],3)) ) ) layout( rbind( c(1,1,2,2),c(0,3,3,0) ), width=c(1,2,2,1), height=c(3,4)) pie( table( flower) ) boxplot( stem~flower ) plot(leaf,stem, xaxt="n" ) # no x axis labels title("not a true Stem-and-leaf plot" ) layout( 1 ) mtext(side=3,"three graphs", line=2.3, cex=1.5 ) x <- seq(from=-pi,to=pi,length=10) y <- seq(from=0,to=(2*pi),length=10) xy.grid <- expand.grid(x=x,y=y) dim(xy.grid) z <- sin(xy.grid[,1])+ cos(xy.grid[,2]) zmat <- matrix(z,ncol=10,byrow=f) layout(rbind(c(1,2),c(3,4))) contour(x,y,zmat) persp(x,y,zmat) x <- seq(from=-pi,to=pi,length=50) y <- seq(from=0,to=(2*pi),length=50) xy.grid <- expand.grid(x=x,y=y) dim(xy.grid) z <- sin(xy.grid[,1])+ cos(xy.grid[,2]) zmat <- matrix(z,ncol=50,byrow=f) contour(x,y,zmat,nlevels=15) persp(x,y,zmat, theta=40, phi=40, r=4) 16

17 # theta and phi control angle of view # r controls distance from box layout(1) persp(x,y,zmat, theta=40, phi=40, r=4) layout(c(1,2),respect=t) # respect=t forces aspect ratio to be the same image(x,y,zmat) plot( runif(100), runif(100) ) ########################### # Trellis plots # Go online and get package "lattice" # commercial package S-Plus beat R to the library name "trellis" library( lattice ) candy <- read.table(" der=t) attach(candy) Change <- After - Before xyplot( After ~ Before Treatment ) # obvious correlation xyplot( Change ~ Before Treatment ) # colder people heat up more cloud( Change ~ After * Before Treatment ) # hard to interpret coplot( After~Before Change, panel=panel.smooth ) # condition on one continuous variable and one categorical coplot( After ~ Before Change*Treatment, panel=panel.smooth) ############## ## Bird data ############ birds <- read.table(" skip=15, header=t) names( birds ) attach(birds) coplot( wt ~ tl kl, panel=panel.smooth ) # condition on two continuous variables coplot( wt ~ tl kl * bh, panel=panel.smooth) #install ggplot2 package and load library(ggplot2) # See # 2176_ fc524dc0bc2a140573da38bb.html str(diamonds) 17

18 head(diamonds) qplot(carat, price, colour=clarity, alpha=i(1/3), size=depth, data=diamonds) qplot(x=color,y=price,geom="boxplot",data=diamonds) qplot(x=carat,y=price,colour=clarity,facets=~cut,data=diamonds) qplot(x=carat,y=price,colour=clarity,facets=color~cut,data=diamonds) 18

Graphics in R. Fall /5/17 1

Graphics in R. Fall /5/17 1 Graphics in R Fall 2017 9/5/17 1 Graphics Both built in and third party libraries for graphics Popular examples include ggplot2 ggvis lattice We will start with built in graphics Basic functions to remember:

More information

Stat 302 Statistical Software and Its Applications Graphics

Stat 302 Statistical Software and Its Applications Graphics Stat 302 Statistical Software and Its Applications Graphics Yen-Chi Chen Department of Statistics, University of Washington Autumn 2016 1 / 44 General Remarks on R Graphics A well constructed graph is

More information

Motor Trend MPG Analysis

Motor Trend MPG Analysis Motor Trend MPG Analysis SJ May 15, 2016 Executive Summary For this project, we were asked to look at a data set of a collection of cars in the automobile industry. We are going to explore the relationship

More information

Problem Set 05: Luca Sanfilippo, Marco Cattaneo, Reneta Kercheva 29/10/2018

Problem Set 05: Luca Sanfilippo, Marco Cattaneo, Reneta Kercheva 29/10/2018 Problem Set 05: Luca Sanfilippo, Marco Cattaneo, Reneta Kercheva 29/10/ Exercise 1: The data source from class. A: Write 1 paragraph about the dataset. B: Install the package that allows to access your

More information

Appendix 9: New Features in v3.5 B

Appendix 9: New Features in v3.5 B Appendix 9: New Features in v3.5 B Port Flow Analyzer has had many updates since this user manual was written for the original v3.0 for Windows. These include 3.0 A through v3.0 E, v3.5 and now v3.5 B.

More information

Exploratory data analysis description, 96 dotplots, 101 stem-and-leaf, ez package, ezanova function, 132

Exploratory data analysis description, 96 dotplots, 101 stem-and-leaf, ez package, ezanova function, 132 Index A Akaike Information Criterion (AIC), 78 Associations problem, 226 solution, 226 analysis, 226 apriori function, 228 basket analysis, 226 CSV version of our basket dataset(), 230 inspect(), 229 opening

More information

1 of 28 9/15/2016 1:16 PM

1 of 28 9/15/2016 1:16 PM 1 of 28 9/15/2016 1:16 PM 2 of 28 9/15/2016 1:16 PM 3 of 28 9/15/2016 1:16 PM objects(package:psych).first < function(library(psych)) help(read.table) #or?read.table #another way of asking for help apropos("read")

More information

Motor Trend Yvette Winton September 1, 2016

Motor Trend Yvette Winton September 1, 2016 Motor Trend Yvette Winton September 1, 2016 Executive Summary Objective In this analysis, the relationship between a set of variables and miles per gallon (MPG) (outcome) is explored from a data set of

More information

Math 135 S18 Exam 1 Review. The Environmental Protection Agency records data on the fuel economy of many different makes of cars.

Math 135 S18 Exam 1 Review. The Environmental Protection Agency records data on the fuel economy of many different makes of cars. Math 135 S18 Exam 1 Review Name *note: In addition to this Review, study the material from Take Home Assignments, Classwork sheets and class notes. ALL are represented in the exam. The Environmental Protection

More information

Atmospheric Chemistry and Physics. Interactive Comment. K. Kourtidis et al.

Atmospheric Chemistry and Physics. Interactive Comment. K. Kourtidis et al. Atmos. Chem. Phys. Discuss., www.atmos-chem-phys-discuss.net/15/c4860/2015/ Author(s) 2015. This work is distributed under the Creative Commons Attribute 3.0 License. Atmospheric Chemistry and Physics

More information

Introduction. ShockWatch Impact Indicator Activation. Contents

Introduction. ShockWatch Impact Indicator Activation. Contents Introduction This document provides an overview of information related to the activation of ShockWatch impact indicators. Activation graphs/response curves and other auxiliary information are included.

More information

SDWP In-House Data Visualization Guide. Updated February 2016

SDWP In-House Data Visualization Guide. Updated February 2016 SDWP In-House Data Visualization Guide Updated February 2016 Dos and Don ts of Visualizing Data DO DON T Flat Series 1 Series 2 Series Series 1 Series 2 Series 4. 2.4 4.4 2. 2 2. 1.8 4. 2.8 4. 4. 2. 2

More information

CC COURSE 1 ETOOLS - T

CC COURSE 1 ETOOLS - T CC COURSE 1 ETOOLS - T Table of Contents General etools... 5 Algebra Tiles (CPM)... 6 Pattern Tile & Dot Tool (CPM)... 9 Area and Perimeter (CPM)...11 Base Ten Blocks (CPM)...14 +/- Tiles & Number Lines

More information

QuaSAR Quantitative Statistics

QuaSAR Quantitative Statistics QuaSAR Quantitative Statistics QuaSAR is a program that aids in the Quantitative Statistical Analysis of Reaction Monitoring Experiments. It was designed to quickly and easily convert processed SRM/MRM-MS

More information

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath.

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath. LET S ARGUE: STUDENT WORK PAMELA RAWSON Baxter Academy for Technology & Science Portland, Maine pamela.rawson@gmail.com @rawsonmath rawsonmath.com Contents Student Movie Data Claims (Cycle 1)... 2 Student

More information

Quantitative Module I: Using Graphs to Make an Argument with Data. Winter Ecology Week 6 3 March 2011

Quantitative Module I: Using Graphs to Make an Argument with Data. Winter Ecology Week 6 3 March 2011 Quantitative Module I: Using Graphs to Make an Argument with Data Winter Ecology Week 6 3 March 2011 Quantitative Modules I: Using Graphs to Make an Argument with Data (this week) II: Hypothesis Testing

More information

R Graphics with Ggplot2: Day 2 November 16, 2016

R Graphics with Ggplot2: Day 2 November 16, 2016 R Graphics with Ggplot2: Day 2 November 16, 16 Saving your plot You can save you plot with ggsave. ggsave("cars.pdf") ggsave("cars.tiff") The default is to save the last plot created in the format determined

More information

Suspension Analyzer Full Vehicle Version

Suspension Analyzer Full Vehicle Version Suspension Analyzer Full Vehicle Version Overview of Features The Full Vehicle version of Suspension Analyzer has several enhancements over the standard version, the most significant is analyzing various

More information

Introduction to MATLAB. MATLAB Matrix Manipulations. Transportation Infrastructure Systems GS. Fall 2002

Introduction to MATLAB. MATLAB Matrix Manipulations. Transportation Infrastructure Systems GS. Fall 2002 Introduction to MATLAB MATLAB Matrix Manipulations Transportation Infrastructure Systems GS Dr. Antonio Trani Civil and Environmental Engineering Virginia Polytechnic Institute and State University Fall

More information

Detecting Strips Peter Claussen 9/5/2017

Detecting Strips Peter Claussen 9/5/2017 Detecting Strips Peter Claussen 9/5/2017 Libraries librar(ncf) librar(ape) Warning: package 'ape' was built under R version 3.3.2 Attaching package: 'ape' The following object is masked from 'package:ncf':

More information

Box Plot Template. Sample 1 Sample 2 Sample 3 Sample 4 Sample 5 Sample Vertex42 LLC HELP. Q1 Q2-Q1 Q3-Q2 Řady1 Řady2

Box Plot Template. Sample 1 Sample 2 Sample 3 Sample 4 Sample 5 Sample Vertex42 LLC HELP. Q1 Q2-Q1 Q3-Q2 Řady1 Řady2 Box Plot Template 160 140 120 100 80 2009 Vertex42 LLC HELP This template shows how to create a box and whisker chart in Excel. The ends of the whisker are set at 1.5*IQR above the third quartile (Q3)

More information

ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZ

ABCDEFGHIJKLMNOPQRSTUVWXYZ ABCDEFGHIJKLMNOPQRSTUVWXYZ PRIMARY IDENTITY SECONDARY IDENTITY PRIMARY IDENTITY SECONDARY IDENTITY FONTS ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz Montserrat Light ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz

More information

Index. Calculated field creation, 176 dialog box, functions (see Functions) operators, 177 addition, 178 comparison operators, 178

Index. Calculated field creation, 176 dialog box, functions (see Functions) operators, 177 addition, 178 comparison operators, 178 Index A Adobe Reader and PDF format, 211 Aggregation format options, 110 intricate view, 109 measures, 110 median, 109 nongeographic measures, 109 Area chart continuous, 67, 76 77 discrete, 67, 78 Axis

More information

Car Comparison Project

Car Comparison Project NAME Car Comparison Project Introduction Systems of linear equations are a useful way to solve common problems in different areas of life. One of the most powerful ways to use them is in a comparison model

More information

Regression Models Course Project, 2016

Regression Models Course Project, 2016 Regression Models Course Project, 2016 Venkat Batchu July 13, 2016 Executive Summary In this report, mtcars data set is explored/analyzed for relationship between outcome variable mpg (miles for gallon)

More information

o applied to the motor., 0, and Vo

o applied to the motor., 0, and Vo Induction Motor and Drive Performance 1 Induction Motor Drivee Performance Introduction Over the past few years there have been great improvements in power electronics and their uses in motor drives. Today,

More information

L441/ L444 Four-Post Lift

L441/ L444 Four-Post Lift Quick Tread L441/ L444 Four-Post Lift Drive over tread depth system NEW! Quick Tread At-A-Glance Driven by Hunter s award-winning WinAlign software, Quick Tread Hunter s drive over tread depth unit automatically

More information

CoreLine Recessed the clear choice for LED

CoreLine Recessed the clear choice for LED CoreLine Recessed the clear choice for LED CoreLine Recessed Whether for a new building or renovation of an existing space, customers want lighting solutions that provide quality of light and substantial

More information

Air Motors to 3.9 hp (0.16 to 2.9kW) Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity

Air Motors to 3.9 hp (0.16 to 2.9kW) Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity Air Motors 0.21 to 3.9 hp (0.16 to kw) Comprehensive range Lubrication free Stainless steel High torques More Than Productivity Why choose Desoutter Air Motors? Desoutter offers a wide range of rotating

More information

AIR MOTORS. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity

AIR MOTORS. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity AIR MOTORS 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques More Than Productivity Why choose Desoutter Air Motors? Desoutter offers a wide range of rotating vane air motors

More information

Air Motors. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity

Air Motors. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity Air Motors 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques More Than Productivity Why choose Desoutter Air Motors? Desoutter offers a wide range of rotating vane air motors

More information

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Tutorial 1 Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Dataset for running Correlated Component Regression This tutorial 1 is based on data provided by Michel Tenenhaus and

More information

Data Handling Questions & Solutions

Data Handling Questions & Solutions Data Handling Questions & Solutions November 2008 Page 1 of 146 Page 2 of 146 Page 3 of 146 Page 4 of 146 Page 5 of 146 Page 6 of 146 Page 7 of 146 Page 8 of 146 Page 9 of 146 Page 10 of 146 Page 11 of

More information

Chapter 7. Magnetic Fields. 7.1 Purpose. 7.2 Introduction

Chapter 7. Magnetic Fields. 7.1 Purpose. 7.2 Introduction Chapter 7 Magnetic Fields 7.1 Purpose Magnetic fields are intrinsically connected to electric currents. Whenever a current flows through a wire, a magnetic field is produced in the region around the wire.

More information

Electromagnetic Induction

Electromagnetic Induction Electromagnetic Induction Question Paper Level ubject Exam oard Unit Topic ooklet O Level Physics ambridge International Examinations Electricity and Magnetism Electromagnetic Induction Question Paper

More information

Predicting Tyre Diameter

Predicting Tyre Diameter Predicting Tyre Diameter by Ian D. Greenwood INTRODUCTION The HDM-4 rolling resistance model uses tyre diameter as an independent variable. Since this is a difficult item to estimate, an analysis was conducted

More information

Column Name Type Description Year Number Year of the data. Vehicle Miles Traveled

Column Name Type Description Year Number Year of the data. Vehicle Miles Traveled Background Information Each year, Americans drive trillions of miles in their vehicles. Until recently, the number of miles driven increased steadily each year. This drop-off in growth has raised questions

More information

An Introduction to R 2.5 A few data manipulation tricks!

An Introduction to R 2.5 A few data manipulation tricks! An Introduction to R 2.5 A few data manipulation tricks! 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

More information

Estimation of Fuel Consumption and CO2 Emissions in Ghana, Methodology and Results 12/04/2018

Estimation of Fuel Consumption and CO2 Emissions in Ghana, Methodology and Results 12/04/2018 Estimation of Fuel Consumption and CO2 Emissions in Ghana, Methodology and Results OUTLINE OBJECTIVES OF STUDY METHODOLOGY OVERVIEW OF VEHICLE INVENTORY IN GHANA DATA CLEANING RESULTS OF DATA ANALYSIS

More information

tool<-read.csv(file="d:/chilo/regression 7/tool.csv", header=t) tool

tool<-read.csv(file=d:/chilo/regression 7/tool.csv, header=t) tool Regression nalysis lab 7 1 Indicator variables 1.1 Import data tool

More information

2 Dynamics Track User s Guide: 06/10/2014

2 Dynamics Track User s Guide: 06/10/2014 2 Dynamics Track User s Guide: 06/10/2014 The cart and track. A cart with frictionless wheels rolls along a 2- m-long track. The cart can be thrown by clicking and dragging on the cart and releasing mid-throw.

More information

High Power LED Projectors STREETLIGHT 60W & 90W

High Power LED Projectors STREETLIGHT 60W & 90W High Power LED Projectors STREETLIGHT 6W & 9W High Power LED Projectors StreetLight The High Power LED Projectors series StreetLight with the simple, fashioned design and 4 different color optional for

More information

Application of Serpent in EU FP7 project FREYA: Fast Reactor Experiments for hybrid Applications

Application of Serpent in EU FP7 project FREYA: Fast Reactor Experiments for hybrid Applications Application of Serpent in EU FP7 project FREYA: Fast Reactor Experiments for hybrid Applications E. Fridman Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft

More information

AIR MOTORS. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity

AIR MOTORS. 160 W to 2900 W Comprehensive range Lubrication free Stainless steel High torques. More Than Productivity AIR MOTORS 60 W to 900 W Comprehensive range Lubrication free Stainless steel High torques More Than Productivity Why choose Desoutter Air Motors? Desoutter offers a wide range of rotating vane air motors

More information

Investigation of Relationship between Fuel Economy and Owner Satisfaction

Investigation of Relationship between Fuel Economy and Owner Satisfaction Investigation of Relationship between Fuel Economy and Owner Satisfaction June 2016 Malcolm Hazel, Consultant Michael S. Saccucci, Keith Newsom-Stewart, Martin Romm, Consumer Reports Introduction This

More information

Concepts of One Dimensional Kinematics Activity Purpose

Concepts of One Dimensional Kinematics Activity Purpose Concepts of One Dimensional Kinematics Activity Purpose During the activity, students will become familiar with identifying how the position, the velocity, and the acceleration of an object will vary with

More information

Experience bright and vivid colors

Experience bright and vivid colors Fortimo LED Fortimo LED SLM CW 1205 L13 2024 G6 Datasheet Experience bright and vivid colors Fortimo LED SLM CW 1205 L13 1619 G6 Fortimo LED SLM Gen6 continues to focus on the combination of Quality of

More information

Experience bright and vivid colors

Experience bright and vivid colors Fortimo LED Fortimo LED SLM PW 1205 L13 2024 G6 Datasheet Experience bright and vivid colors Fortimo LED SLM PW 1205 L13 2024 G6 Fortimo LED SLM Gen6 continues to focus on the combination of Quality of

More information

Experience bright and vivid colors

Experience bright and vivid colors Fortimo LED Fortimo LED SLM PW 18 L15 24 G6 Datasheet Experience bright and vivid colors Fortimo LED SLM PW 18 L15 24 G6 Fortimo LED SLM Gen6 continues to focus on the combination of Quality of Light and

More information

NO. D - Language YES. E - Literature Total 6 28

NO. D - Language YES. E - Literature Total 6 28 Table. Categorical Concurrence Between Standards and Assessment as Rated by Six Reviewers Florida Grade Language Arts Number of Assessment Items - 45 Standards Level by Objective Hits Cat. Goals Objs #

More information

STREET/STREET - FLAT TOP

STREET/STREET - FLAT TOP Small-Block Mopar STREET/STREET - FLAT TOP Designed to fit most OEM open and closed chamber heads Will work with aftermarket Edelbrock & Indy heads Can be used with small nitrous applications Compression

More information

This short paper describes a novel approach to determine the state of health of a LiFP (LiFePO 4

This short paper describes a novel approach to determine the state of health of a LiFP (LiFePO 4 Impedance Modeling of Li Batteries for Determination of State of Charge and State of Health SA100 Introduction Li-Ion batteries and their derivatives are being used in ever increasing and demanding applications.

More information

High-efficiency long-cased axial fans fitted industrial Brushless motor E.C. Fibreglass-reinforced plastic impeller.

High-efficiency long-cased axial fans fitted industrial Brushless motor E.C. Fibreglass-reinforced plastic impeller. HEPT/EW with High-efficiency long-cased axial fans fitted industrial Brushless motor E.C. BRUSHLESS MOTOR BRUSHLESS INDUSTRIAL E.C. Fibreglass-reinforced plastic impeller. Fan: Airflow direction from motor

More information

DEFENSE LOGISTICS AGENCY LAND AND MARITIME P.O. BOX 3990 COLUMBUS, OH

DEFENSE LOGISTICS AGENCY LAND AND MARITIME P.O. BOX 3990 COLUMBUS, OH DEFENSE LOGISTICS AGENCY LAND AND MARITIME P.O. BOX 3990 COLUMBUS, OH 43218-3990 July 26, 2018 MEMORANDUM FOR MILITARY/INDUSTRY DISTRIBUTION SUBJECT: Initial draft of MIL-STD-1560 w/change 2 (see table

More information

User Manual for Eschenbach Chameleon LED Table Lamp

User Manual for Eschenbach Chameleon LED Table Lamp User Manual for Eschenbach Chameleon LED Table Lamp Thank you for purchasing the Eschenbach Chameleon LED table lamp. This lamp is designed with unique low vision user features/functions and provides superior

More information

R Introductory Session

R Introductory Session R Introductory Session Michael Hahsler March 4, 2009 Contents 1 Introduction 2 1.1 Getting Help................................................. 2 2 Basic Data Types 2 2.1 Vector.....................................................

More information

(ii) B1 ft 19: (c) 15 4 (2 + 1) = 3 1 B1 for 15 4 (2 + 1) = 3 oe

(ii) B1 ft 19: (c) 15 4 (2 + 1) = 3 1 B1 for 15 4 (2 + 1) = 3 oe November 2011 1380_2F 1 (a) 4.3 1 B1 cao (b) 24 1 B1 cao 2 (i) 17 55 + 1 20 Or 17:55 +5min = 18:00 18:00 + 1 hr = 19:00 19:00 + 15 min = 19:15 19 15 3 M1 for 17 55 + 1 20 oe or a complete build up method

More information

Universal Spring Tester

Universal Spring Tester Test equipment Universal www.ulbrich-group.com Process-Integrated determination of data characteristics and Quality control of Leaf and Coil springs Springs need to be regularly inspected recorded by distance

More information

PAGE #1 TRIAL # US 801/05/ : PCNOTILL* /24/2006 APPLICATIONS

PAGE #1 TRIAL # US 801/05/ : PCNOTILL* /24/2006 APPLICATIONS PAGE #1 TRIAL # US 801/05/01 002 01 : PCNOTILL* 2407 01/24/2006 APPLICATIONS SOIL INFORMATION TRIAL INFORMATION TEXTURE: CL DESIGN: RCB PH: 6.1 REPS: 3 %OM: 1.5 PREV.CROP: GLXMA - SOYBEAN %RESIDUE: 0 PLOT

More information

Power Team Mission Day Instructions

Power Team Mission Day Instructions Overview Power Team Mission Day Instructions Every 90 minutes the space station orbits the earth, passing into and out of the sun s direct light. The solar arrays and batteries work together to provide

More information

34.5 Electric Current: Ohm s Law OHM, OHM ON THE RANGE. Purpose. Required Equipment and Supplies. Discussion. Procedure

34.5 Electric Current: Ohm s Law OHM, OHM ON THE RANGE. Purpose. Required Equipment and Supplies. Discussion. Procedure Name Period Date CONCEPTUAL PHYSICS Experiment 34.5 Electric : Ohm s Law OHM, OHM ON THE RANGE Thanx to Dean Baird Purpose In this experiment, you will arrange a simple circuit involving a power source

More information

Initial Results from a 200-year Soil Monitoring Study

Initial Results from a 200-year Soil Monitoring Study Initial Results from a 200-year Soil Monitoring Study Don Ross, University of Vermont Thom Villars, USD NRCS Scott Bailey, US Forest Service Nancy Burt, US Forest Service Sandy Wilmot, Vermont Dept. of

More information

University of TN Chattanooga Physics 1040L 8/28/2012

University of TN Chattanooga Physics 1040L 8/28/2012 PHYSICS 1040L LAB 5: MAGNETIC FIELD Objectives: 1. Determine the relationship between magnetic field and the current in a solenoid. 2. Determine the relationship between magnetic field and the number of

More information

EcoSpec Linear INT - Standard Power

EcoSpec Linear INT - Standard Power OVERVIEW / SPECIFICATION Features: EcoSpec Linear INT - is designed with a slim profile and integral brackets with vertical rotation adjustability providing versatility making this luminaire ideally suited

More information

PVP Field Calibration and Accuracy of Torque Wrenches. Proceedings of ASME PVP ASME Pressure Vessel and Piping Conference PVP2011-

PVP Field Calibration and Accuracy of Torque Wrenches. Proceedings of ASME PVP ASME Pressure Vessel and Piping Conference PVP2011- Proceedings of ASME PVP2011 2011 ASME Pressure Vessel and Piping Conference Proceedings of the ASME 2011 Pressure Vessels July 17-21, & Piping 2011, Division Baltimore, Conference Maryland PVP2011 July

More information

EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control

EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control 1. Learning Objectives EE 370L Controls Laboratory Laboratory Exercise #E1 Motor Control Department of Electrical and Computer Engineering University of Nevada, at Las Vegas To demonstrate the concept

More information

AP Lab 22.3 Faraday s Law

AP Lab 22.3 Faraday s Law Name School Date AP Lab 22.3 Faraday s Law Objectives To investigate and measure the field along the axis of a solenoid carrying a constant or changing current. To investigate and measure the emf induced

More information

MTO 11.2 Examples: Samplaski, Pitch-Clas Set Similarity Measures

MTO 11.2 Examples: Samplaski, Pitch-Clas Set Similarity Measures MTO 11.2 Examples: Samplaski, Pitch-Clas Set Similarity Measures (Note: audio, video, and other interactive examples are only available online) http://www.mtosmt.org/issues/mto.05.11.2/mto.05.11.2.samplaski.php

More information

Introduction to R (7): Central Limit Theorem

Introduction to R (7): Central Limit Theorem Introduction to R (7): Central Limit Theorem Central Limit Theorem Central limit theorem says that if x D(µ, σ) whered is a probability density or mass function (regardless of the form of the distribution),

More information

A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF

A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF Read Online and Download Ebook A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF Click link bellow and free register to

More information

Analyzing the Thermal Operating Conditions of a Solenoid

Analyzing the Thermal Operating Conditions of a Solenoid A CASE STUDY FROM SOLENOID SYSTEMS Analyzing the Thermal Operating Conditions of a Solenoid BACKGROUND When designing a Solenoid the operating temperature of the Coil must be taken into account when assessing

More information

Evaluation copy. The Magnetic Field in a Slinky. computer OBJECTIVES MATERIALS INITIAL SETUP

Evaluation copy. The Magnetic Field in a Slinky. computer OBJECTIVES MATERIALS INITIAL SETUP The Magnetic Field in a Slinky Computer 26 A solenoid is made by taking a tube and wrapping it with many turns of wire. A metal Slinky is the same shape and will serve as our solenoid. When a current passes

More information

VFD. Variable Frequency Drive

VFD. Variable Frequency Drive VFD Variable Frequency Drive Mitsubishi Mitsubishi D700 VFD Installation Mitsubishi FR-D700 VFD User Manual Mitsubishi D700 Parallel Braking Resistors VFD Wiring Diagram - Apollo Mitsubishi VFD to Interpreter

More information

Product Description. MASTER TL-D 90 De Luxe. Benefits. Features. Application. Low-pressure mercury discharge lamps with a tubular 26 mm envelope

Product Description. MASTER TL-D 90 De Luxe. Benefits. Features. Application. Low-pressure mercury discharge lamps with a tubular 26 mm envelope Lighting Product Description Low-pressure mercury discharge lamps with a tubular 26 envelope Benefits Very good colour rendering. Making colours appear rich, deep and enhanced as they do in daylight, making

More information

Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif

Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif 182 Lampiran IV. Hasil Output SPSS Versi 16.0 untuk Analisis Deskriptif Frequencies Statistics Kinerja Guru Sikap Guru Thdp Kepsek Motivasi Kerja Guru Kompetensi Pedagogik Guru N Valid 64 64 64 64 Missing

More information

Qfiniti 3.0 Teams Style Guide. February 17, 2005

Qfiniti 3.0 Teams Style Guide. February 17, 2005 Qfiniti 3.0 Teams Style Guide February 17, 2005 Contents Team Members 3-10 Team Access Team Memberships Classifications Classifications Dialogs Aliases Aliases Dialog Additional Info Teams 11-14 Team Access

More information

Objective: Students will create scatter plots given data in a table. Students will then do regressions to model the data.

Objective: Students will create scatter plots given data in a table. Students will then do regressions to model the data. Objective: Students will create scatter plots given data in a table. Students will then do regressions to model the data. About the Lesson: Homestead-Miami Speedway has been rebuilt in different configurations

More information

Car Comparison Project

Car Comparison Project NAME Car Comparison Project Introduction Systems of linear equations are a useful way to solve common problems in different areas of life. One of the most powerful ways to use them is in a comparison model

More information

Southern Illinois University. General Trial Information. Trial Location. Personnel. Pest Description. Maintenance.

Southern Illinois University. General Trial Information. Trial Location. Personnel. Pest Description. Maintenance. Study Director: ryan Young Title: Professor General Trial Information Trial Status: F - one-year/final Initiation Date: 4-20-12 City: Carbondale State/Prov.: IL Postal Code: 62901 Country: US Trial Location

More information

The Panzer Legions: A Guide To The German Army Tank Divisions Of World War II And Their Commanders By Samuel W. Mitcham Jr.

The Panzer Legions: A Guide To The German Army Tank Divisions Of World War II And Their Commanders By Samuel W. Mitcham Jr. The Panzer Legions: A Guide To The German Army Tank Divisions Of World War II And Their Commanders By Samuel W. Mitcham Jr. READ ONLINE If you are searched for the book The Panzer Legions: A Guide to the

More information

Est ComPower Mini UPS (3 Phase) CPX Mini 10 50kVA

Est ComPower Mini UPS (3 Phase) CPX Mini 10 50kVA Est.1968 ComPower Mini UPS (3 Phase) CPX Mini 10 50kVA Maximise your availability with ComPower Mini Designed and Published by Thycon. ComPower Mini is a midsize, three-phase UPS system that delivers premium

More information

Waveguide Flanges. Rectangular Flanges. Double Ridge Flanges F-D SERIES

Waveguide Flanges. Rectangular Flanges. Double Ridge Flanges F-D SERIES Waveguide Flanges Rectangular Flanges F SERIES Double Ridge Flanges F-D SERIES Materials Aluminium (Shown in blue type) Brass (Shown in black type.) Codes RECTANGULAR RECTANGULAR RECTANGULAR RECTANGULAR

More information

Xero User Guide for epages

Xero User Guide for epages Xero User Guide for epages Managing Xero Integration Updated 26 th May 2015 ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au

More information

Unit 8 ~ Learning Guide Name:

Unit 8 ~ Learning Guide Name: Unit 8 ~ Learning Guide Name: Instructions: Using a pencil, complete the following notes as you work through the related lessons. Show ALL work as is explained in the lessons. You are required to have

More information

EML 342 Internal Combustion Engines Lab Spring 2008 Prof. Horizon Gitano Lab Guide Rev 1

EML 342 Internal Combustion Engines Lab Spring 2008 Prof. Horizon Gitano Lab Guide Rev 1 USM Mechanical Engineering EML 342 Internal Combustion Engines Lab Spring 2008 Prof. Horizon Gitano Lab Guide Rev 1 www.skyshorz.com/university/resource.php Internal Combustion Engines: Performance Measurements

More information

Vermeer Newsroom Vertical Multiple Dealer List Ad Fixed Depth (Example shown is 7.5" wide x 10.25" tall at 70% scale)

Vermeer Newsroom Vertical Multiple Dealer List Ad Fixed Depth (Example shown is 7.5 wide x 10.25 tall at 70% scale) GET IN LINE. It takes a special baler to withstand the tough conditions and tight timeframes of baling cornstalks. The Vermeer 605N Cornstalk Special balers are equipped with heavy-duty components to bale

More information

MOTOR WINDING INSULATION TESTING

MOTOR WINDING INSULATION TESTING 1 MOTOR WINDING INSULATION TESTING 237 237 237 217 217 217 200 200 200 80 119 27 252 174.59 255 255 255 0 0 0 163 163 163 131 132 122 239 65 53 110 135 120 112 92 56 62 102 130 102 56 48 130 120 111 AKA

More information

EXST7034 Multiple Regression Geaghan Chapter 11 Bootstrapping (Toluca example) Page 1

EXST7034 Multiple Regression Geaghan Chapter 11 Bootstrapping (Toluca example) Page 1 Chapter 11 Bootstrapping (Toluca example) Page 1 Toluca Company Example (Problem from Neter, Kutner, Nachtsheim & Wasserman 1996,1.21) A particular part needed for refigeration equipment replacement parts

More information

Intro to ggplot2. Hadley Wickham. Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University

Intro to ggplot2. Hadley Wickham. Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University Intro to ggplot2 Hadley Wickham Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University November 2010 HELLO my name is Hadley had.co.nz/courses/ 10-tokyo Outline Data

More information

PV-Wind SOFTWARE for Windows User s Guide

PV-Wind SOFTWARE for Windows User s Guide PV-Wind SOFTWARE for Windows User s Guide Contents 1. Overview 1.1. General description of the PV-Wind Software 2. Inputting Parameters 2.1. System type 2.2. Location 2.3. Loads 2.4. PV modules 2.5. Inverters

More information

The Magnetic Field in a Slinky

The Magnetic Field in a Slinky The Magnetic Field in a Slinky A solenoid is made by taking a tube and wrapping it with many turns of wire. A metal Slinky is the same shape and will serve as our solenoid. When a current passes through

More information

MPT SERIES OPERATING MANUAL. Caution: To Operate this controller safely, use the Safe Operating Area Design Tool Online at

MPT SERIES OPERATING MANUAL. Caution: To Operate this controller safely, use the Safe Operating Area Design Tool Online at LASER DIODE DRIVERS TEMPERATURE CONTROLLERS Simply Advanced Control for Your Cutting Edge Design MPT SERIES OPERATING MANUAL Caution: To Operate this controller safely, use the Safe Operating Area Design

More information

Advanced Auto Tech. ASE A 1 Test Preparation Engine Upper End Theory & Service

Advanced Auto Tech. ASE A 1 Test Preparation Engine Upper End Theory & Service Advanced Auto Tech ASE A 1 Test Preparation Engine Upper End Theory & Service Torque to yield bolts stretch to their yield point when tightened and should not be reused. True or False The sealing lip &

More information

Appendix 3 V1.1B Features

Appendix 3 V1.1B Features Appendix 3 V1.1B Features The v1.1b of the Valve Spring Tester adds several new features, which are described in this Appendix. In addition, the Automatic Spring Tester was released after the original

More information

Experience bright and vivid colors

Experience bright and vivid colors SLM 28 L5 Gen5 Datasheet Experience bright and vivid colors Fortimo SLM 28 L5 G5 Fortimo LED SLM Gen5 continues to focus on the combination of Quality of Light and performance. By offering the CoB separate

More information

Introduction: Supplied to 360 Test Labs... Battery packs as follows:

Introduction: Supplied to 360 Test Labs... Battery packs as follows: 2007 Introduction: 360 Test Labs has been retained to measure the lifetime of four different types of battery packs when connected to a typical LCD Point-Of-Purchase display (e.g., 5.5 with cycling LED

More information

Extended design possibilities

Extended design possibilities Lighting Extended design possibilities MASTER This circular TL5 lamp (tube diameter 16 mm) offers extended design possibilities. The slim tube allows the creation of extremely flat luminaires and enables

More information

DIGITAL VALVE POSITIONER ENHANCES THE PERFORMANCE OF PRESSURE/FLOW CONTROL

DIGITAL VALVE POSITIONER ENHANCES THE PERFORMANCE OF PRESSURE/FLOW CONTROL SUSTAINABLE MANUFACTURING FEATURES DIGITAL VALVE POSITIONER ENHANCES THE PERFORMANCE OF PRESSURE/FLOW CONTROL Written by Bob Wilson, PEMCO Services, for the Compressed Air Challenge Specifying a control

More information

Resistivity. Equipment

Resistivity. Equipment Resistivity Equipment Qty Item Parts Number 1 Voltage Source 850 Interface 1 Resistance Apparatus EM-8812 1 Sample Wire Set EM-8813 1 Voltage Sensor UI-5100 2 Patch Cords rev 05/2018 Purpose The purpose

More information

Heavy Duty Hydrostatic Transmissions

Heavy Duty Hydrostatic Transmissions Heavy Duty Hydrostatic Transmissions Features and Benefits Typical Applications Construction Transit Mixer Road Roller Paver Motor Grader Loader Dozer Material Handling & Utility Crane Sweeper Lift Truck

More information