Solution Example in R > mat [,1] [,2] [1,] [2,] 4 5.5

Slides:



Advertisements
Similar presentations
Missing Data Analysis. Complete Data: n=100 Sample means of X and Y Sample variances and covariances of X Y
Advertisements

1 Finding the Sample Mean  Given: The times, in seconds, required for a sample of students to perform a required task were: 6,  Find the sample mean.
Dr. Michael R. Hyman, NMSU Correlation (Click icon for audio)
MathematicalMarketing Slide 2.1 Descriptive Statistics Chapter 2: Descriptive Statistics We will be comparing the univariate and matrix formulae for common.
EXAMPLE 3 Find the inverse of a 3 × 3 matrix Use a graphing calculator to find the inverse of A. Then use the calculator to verify your result. 2 1 – 2.
GUIDED PRACTICE for Example – – 2 12 – 4 – 6 A = Use a graphing calculator to find the inverse of the matrix A. Check the result by showing.
Luminosity measurements at Hadron Colliders
Choosing a Dental Plan Student Name
Virtual Environments and Computer Graphics
Chương 1: CÁC PHƯƠNG THỨC GIAO DỊCH TRÊN THỊ TRƯỜNG THẾ GIỚI
D. Phát triển thương hiệu
NHỮNG VẤN ĐỀ NỔI BẬT CỦA NỀN KINH TẾ VIỆT NAM GIAI ĐOẠN
BÖnh Parkinson PGS.TS.BS NGUYỄN TRỌNG HƯNG BỆNH VIỆN LÃO KHOA TRUNG ƯƠNG TRƯỜNG ĐẠI HỌC Y HÀ NỘI Bác Ninh 2013.
Nasal Cannula X particulate mask
Evolving Architecture for Beyond the Standard Model
Electronics for Pedestrians – Passive Components –
L-Systems and Affine Transformations
CMSC423: Bioinformatic Algorithms, Databases and Tools
Some aspect concerning the LMDZ dynamical core and its use
Bayesian Confidence Limits and Intervals
Current State of Japanese Economy under Negative Interest Rate and Proposed Remedies Naoyuki Yoshino Dean Asian Development Bank Institute Professor Emeritus,
Face Recognition Monday, February 1, 2016.
HERMESでのHard Exclusive生成過程による 核子内クォーク全角運動量についての研究
MOCLA02 Design of a Compact L-­band Transverse Deflecting Cavity with Arbitrary Polarizations for the SACLA Injector Sep. 14th, 2015 H. Maesaka, T. Asaka,
Fuel cell development program for electric vehicle
Optomechanics with atoms
داده کاوی سئوالات نمونه
ლექცია 4 - ფული და ინფლაცია
FLUORECENCE MICROSCOPY SUPERRESOLUTION BLINK MICROSCOPY ON THE BASIS OF ENGINEERED DARK STATES* *Christian Steinhauer, Carsten Forthmann, Jan Vogelsang,
Particle acceleration during the gamma-ray flares of the Crab Nebular
Interpretations of the Derivative Gottfried Wilhelm Leibniz
Advisor: Chiuyuan Chen Student: Shao-Chun Lin
Chapter 6 并发:死锁和饥饿 Operating Systems: Internals and Design Principles
You NEED your book!!! Frequency Distribution
Y V =0 a V =V0 x b b V =0 z
Climate-Energy-Policy Interaction
Hui Wang†*, Canturk Isci‡, Lavanya Subramanian*,
Online Learning: An Introduction
The Toroidal Sporadic Source: Understanding Temporal Variations
FW 3.4: More Circle Practice
Decision Procedures Christoph M. Wintersteiger 9/11/2017 3:14 PM
Howard Wiseman1 and Geoff Pryde1
Mitchell Cox University of the Witwatersrand, Johannesburg
doc.: IEEE <doc#>
Progress on Beam Loading Studies
Solar Astronomy with LOFAR - First Steps
Plan for Day 4 Skip ahead to Lesson 5, about Mechanism Construction
Virtual Memory II CSE 351 Spring 2017
Machine learning tehniques for credit risk modeling in practice
Introduction to Scientific Computing
Lower bounds against convex relaxations via statistical query complexity Based on: V. F., Will Perkins, Santosh Vempala. On the Complexity of Random Satisfiability.
Quantum Algorithms and Cryptography
Chp9: ODE’s Numerical Solns
Gil Kalai Einstein Institute of Mathematics
Hodgkin-Huxley David Wallace Croft, M.Sc. Atzori Lab, U.T. Dallas
Atmospheric Thermodynamics
On-Shell Methods in Quantum Field Theory
Elementary Particle Physics
Millikan's Oil Drop Experiment
Correlations & Regression Modelling
Covariance/ Correlation
Virtual COMSATS Inferential Statistics Lecture-26
Covariance/ Correlation
Covariance/ Correlation
Introduction to Econometrics
Chapter 3D Chapter 3, part D Fall 2000.
Covariance/ Correlation
Multivariate Statistics
Path Analysis Application of multiple linear regression.
Multivariate Statistics
Presentation transcript:

Solution Example in R > mat [,1] [,2] [1,] 3 5.0 [2,] 4 5.5 [1,] 3 5.0 [2,] 4 5.5 [3,] 2 4.0 [4,] 6 7.0 [5,] 8 10.0 [6,] 2 5.0 [7,] 5 7.5 > m1.mat [1] 4.285714 > m2.mat [1] 6.285714 > v1.mat [1] 4.904762 > v2.mat [1] 4.154762 > cov.mat [,1] [,2] [1,] 4.904762 4.321429 [2,] 4.321429 4.154762 # Create matrix > mat = matrix(c(3,4,2,6,8,2,5,5,5.5,4,7,10,5,7.5),7,2) # sample mean for each variable > m1.mat =mean(mat [,1]) > m2.mat =mean(mat [,2]) # sample variance for each variable > v1.mat =var(mat [,1]) > v2.mat =var(mat [,2]) # covariance matrix > cov.mat=var(mat) Many mv methods are based on an underlying model

Calculate manually & check solutions in R TASK 1 The yield of rice paddy have been measured in tonne/ha, which have randomly attributed to 3 lots prepared by one of three different fertilizers: Yield X Yield Y Yield Z 1.3 1.9 4.3 4.2 4.4 2.6 2.9 3.4 3.1 3.2 3.5 2.1 3.3 2.4 2.7 4.5 1.6 2.3 2.8 (1) Calculate the arrays for . (2) Interpret Xbar=(2.56,2.93,3.17) Sn= 0.57 0.31 0.29 0.29 0.28 0.54 R= 1 0.75 0.53 1 0.71 1 R23=0.71  relationship between yield Y and Z is positive and strongly correlated. Calculate manually & check solutions in R