Descriptive Exploratory Data Analysis II

Slides:



Advertisements
Similar presentations
1 SESSION 5 Graphs for data analysis. 2 Objectives To be able to use STATA to produce exploratory and presentation graphs In particular Bar Charts Histograms.
Advertisements

Matrix Manipulation and 2D Plotting
Descriptive Exploratory Data Analysis 9/6/2007 Jagdish S. Gangolly State University of New York at Albany.
Descriptive Exploratory Data Analysis 9/6/2007 Jagdish S. Gangolly State University of New York at Albany.
6/1/2015 Acc 522 Statistical Methods for Business Decisions (Gangolly/Dutta) 1 Introduction to Statistics for Business Decisions Jagdish S. Gangolly &
Maths for Computer Graphics
Introduction to Exploratory Descriptive Data Analysis in S-Plus Jagdish S. Gangolly State University of New York at Albany.
Data Description Tables and Graphs Data Reduction.
LISA Short Course Series R Basics
LISA Short Course Series Basics of R Lin Zhang Feb. 16, 2015 LISA: Basics of RFeb. 16, 2015.
Graphing Examples Categorical Variables
LISA Short Course Series R Basics Ana Maria Ortega Villa Fall 2013 LISA: R BasicsFall 2013.
An Introduction to. Web resources R home page: R Archive:
Hands-on Introduction to R. Outline R : A powerful Platform for Statistical Analysis Why bother learning R ? Data, data, data, I cannot make bricks without.
10/2/2015 Acc 522 Statistical Methods for Forensic Accounting & Assurance (Fall 2008) Gangolly 1 Statistical Methods for Forensic Accounting & Assurance.
Chapter 1 Section 1.1 Introduction to Matrices and Systems of Linear Equations.
Computational Biology, Part E Basic Principles of Computer Graphics Robert F. Murphy Copyright  1996, 1999, 2000, All rights reserved.
Descriptive Exploratory Data Analysis III Jagdish S. Gangolly State University of New York at Albany.
An Introduction to R graphics Cody Chiuzan Division of Biostatistics and Epidemiology Computing for Research I, 2012.
Hands-on Introduction to R. We live in oceans of data. Computers are essential to record and help analyse it. Competent scientists speak C/C++, Java,
Class Opener:. Identifying Matrices Student Check:
STAT 251 Lab 1. Outline Lab Accounts Introduction to R.
Class 7: Answers 1 (C) Which of the following matrices below is in reduced row echelon form? A B C D. None of them.
EXAMPLE 1 Represent figures using matrices Write a matrix to represent the point or polygon. a. Point A b. Quadrilateral ABCD.
Introduction to Exploratory Descriptive Data Analysis in S-Plus Jagdish S. Gangolly State University of New York at Albany.
1 Faculty Name Prof. A. A. Saati. 2 MATLAB Fundamentals 3 1.Reading home works ( Applied Numerical Methods )  CHAPTER 2: MATLAB Fundamentals (p.24)
Descriptive Exploratory Data Analysis II Jagdish S. Gangolly State University of New York at Albany.
Making Histograms with the TI-83 Plus Procedure Reference:
Table of Contents Matrices - Definition and Notation A matrix is a rectangular array of numbers. Consider the following matrix: Matrix B has 3 rows and.
MATH 2311 Help Using R-Studio. To download R-Studio Go to the following link: Follow the instructions for your computer.
= the matrix for T relative to the standard basis is a basis for R 2. B is the matrix for T relative to To find B, complete:
Notes Over 4.2 Finding the Product of Two Matrices Find the product. If it is not defined, state the reason. To multiply matrices, the number of columns.
Do Now: Perform the indicated operation. 1.). Algebra II Elements 11.1: Matrix Operations HW: HW: p.590 (16-36 even, 37, 44, 46)
4-3 Matrix Multiplication Objective: To multiply a matrix by a scalar multiple.
Hands-on Introduction to R. We live in oceans of data. Computers are essential to record and help analyse it. Competent scientists speak C/C++, Java,
EXCEL LESSON 12 CREATING CHARTS VOCABULARY. AXIS A line bordering the chart plot area used as a frame of reference for measurement.
16BIT IITR Data Collection Module If you have not already done so, download and install R from download.
Canadian Bioinformatics Workshops
Matlab Workshop Getting Started.
EMPA Statistical Analysis
13.4 Product of Two Matrices
Introduction to R Samal Dharmarathna.
Using R Graphs in R.
Introduction to Matrices
Ch 11 Graphics Managing graphics windows 1-d, 2-d and 3-d plotting
Introduction Osborn.
2) Platform independent 3) Predefined functions
MATLAB DENC 2533 ECADD LAB 9.
R Programming I EPID 799C Fall 2017.
Introduction to Exploratory Descriptive Data Analysis in S-Plus II
MATH 493 Introduction to MATLAB
Use of Mathematics using Technology (Maltlab)
Introduction to Matrices
Graphics in S-Plus Jagdish S. Gangolly School of Business
D2 Indices and matrices Matrix representation in computer systems:
Basics of R, Ch Functions Help Managing your Objects
Multidimensional array
Introduction to Exploratory Descriptive Data Analysis in S-Plus
Stat 251 (2009, Summer) Lab 2 TA: Yu, Chi Wai.
Determinants 2 x 2 and 3 x 3 Matrices.
3.6 Multiply Matrices.
Introduction to Matlab:
Determinants 2 x 2 and 3 x 3 Matrices.
Matrices.
Matrix A matrix is a rectangular arrangement of numbers in rows and columns Each number in a matrix is called an Element. The dimensions of a matrix are.
R tutorial
Matrix Multiplication Sec. 4.2
Introduction to Matrices
Chapter 7 Section 7.2 Matrices.
Chapter 6 - Arrays Outline Multiple-Subscripted Arrays.
Presentation transcript:

Descriptive Exploratory Data Analysis II Jagdish S. Gangolly State University of New York at Albany

Data Manipulation: Matrices: bind rows (rbind), bind columns (cbind) Arrays: rowMeans, colMeans, rowSums, colSums, rowVars, colVars,… apply(data, dim, function,…) attach(framename):permits you to refer to variables without cumbersome notations. You can detach the frame when done. function (x) { function definition}: To define your own functions rm(comma-separated S-Plus objects): To remove objects

S-Plus Graphics motif( ) : To open a graphics window. Each time you invoke this, a new graphics window is opened. dev.off() : Close the most recent graphics device opened. graphics.off() : Close all graphics devices. plot(comma-separated variables, plot character)

Trellis Graphics I A matrix of graphs Example: >par(mfrow=c(2,2)) # 2 X 2 matrix of figures >x <- 1:100/100:1 >plot(x) # plot cell (1,1) >plot(x, type=“l”) # plot cell (1,2) line >hist(x) # plot cell (2,1) histogram >boxplot(x) # plot cell (2,2) boxplot

Trellis Graphics II Syntax: >trellis.device(motif) Dependent variable ~ explanatory variable |conditioning variable Data set Output: >trellis.device(motif) >dev.off() or >graphics.off()