Sihua Peng, PhD Shanghai Ocean University

Slides:



Advertisements
Similar presentations
Overview of Techniques Case 1 Independent Variable is Groups, or Conditions Dependent Variable is continuous ( ) One sample: Z-test or t-test Two samples:
Advertisements

11-1 Empirical Models Many problems in engineering and science involve exploring the relationships between two or more variables. Regression analysis.
Lesson 10: Linear Regression and Correlation
1 1 Chapter 5: Multiple Regression 5.1 Fitting a Multiple Regression Model 5.2 Fitting a Multiple Regression Model with Interactions 5.3 Generating and.
Chapter 12 Simple Linear Regression
Inference for Regression
6-1 Introduction To Empirical Models 6-1 Introduction To Empirical Models.
11 Simple Linear Regression and Correlation CHAPTER OUTLINE
Probabilistic & Statistical Techniques Eng. Tamer Eshtawi First Semester Eng. Tamer Eshtawi First Semester
Multiple Regression. Outline Purpose and logic : page 3 Purpose and logic : page 3 Parameters estimation : page 9 Parameters estimation : page 9 R-square.
Introduction to Regression Analysis
LINEAR REGRESSION: Evaluating Regression Models Overview Assumptions for Linear Regression Evaluating a Regression Model.
LINEAR REGRESSION: Evaluating Regression Models. Overview Assumptions for Linear Regression Evaluating a Regression Model.
LINEAR REGRESSION: Evaluating Regression Models. Overview Standard Error of the Estimate Goodness of Fit Coefficient of Determination Regression Coefficients.
Statistics 350 Lecture 16. Today Last Day: Introduction to Multiple Linear Regression Model Today: More Chapter 6.
PSY 1950 General Linear Model November 12, The General Linear Model Or, What the Hell ’ s Going on During Estimation?
1 BA 275 Quantitative Business Methods Simple Linear Regression Introduction Case Study: Housing Prices Agenda.
Review of the fundamental concepts of probability Exploratory data analysis: quantitative and graphical data description Estimation techniques, hypothesis.
11-1 Empirical Models Many problems in engineering and science involve exploring the relationships between two or more variables. Regression analysis.
Business Statistics - QBM117 Statistical inference for regression.
Simple Linear Regression and Correlation
Simple Linear Regression Analysis
Chapter 6 (cont.) Regression Estimation. Simple Linear Regression: review of least squares procedure 2.
Statistical hypothesis testing – Inferential statistics II. Testing for associations.
Correlation & Regression
Regression Analysis Regression analysis is a statistical technique that is very useful for exploring the relationships between two or more variables (one.
Chapter 11 Simple Regression
Overall agenda Part 1 and 2  Part 1: Basic statistical concepts and descriptive statistics summarizing and visualising data describing data -measures.
Simple Linear Regression
© The McGraw-Hill Companies, Inc., 2000 Business and Finance College Principles of Statistics Lecture 10 aaed EL Rabai week
OPIM 303-Lecture #8 Jose M. Cruz Assistant Professor.
Business Statistics: A First Course, 5e © 2009 Prentice-Hall, Inc. Chap 12-1 Correlation and Regression.
Simple Linear Regression. The term linear regression implies that  Y|x is linearly related to x by the population regression equation  Y|x =  +  x.
CORRELATION: Correlation analysis Correlation analysis is used to measure the strength of association (linear relationship) between two quantitative variables.
Chapter 6 Simple Regression Introduction Fundamental questions – Is there a relationship between two random variables and how strong is it? – Can.
Correlation and Regression: The Need to Knows Correlation is a statistical technique: tells you if scores on variable X are related to scores on variable.
I231B QUANTITATIVE METHODS ANOVA continued and Intro to Regression.
Psychology 202a Advanced Psychological Statistics November 12, 2015.
Recapitulation! Statistics 515. What Have We Covered? Elements Variables and Populations Parameters Samples Sample Statistics Population Distributions.
Linear Correlation (12.5) In the regression analysis that we have considered so far, we assume that x is a controlled independent variable and Y is an.
Beginning Statistics Table of Contents HAWKES LEARNING SYSTEMS math courseware specialists Copyright © 2008 by Hawkes Learning Systems/Quant Systems, Inc.
Chapter 14 Introduction to Regression Analysis. Objectives Regression Analysis Uses of Regression Analysis Method of Least Squares Difference between.
Topics, Summer 2008 Day 1. Introduction Day 2. Samples and populations Day 3. Evaluating relationships Scatterplots and correlation Day 4. Regression and.
Copyright © 2008 by Nelson, a division of Thomson Canada Limited Chapter 18 Part 5 Analysis and Interpretation of Data DIFFERENCES BETWEEN GROUPS AND RELATIONSHIPS.
Lecturer: Ing. Martina Hanová, PhD.. Regression analysis Regression analysis is a tool for analyzing relationships between financial variables:  Identify.
Introduction Many problems in Engineering, Management, Health Sciences and other Sciences involve exploring the relationships between two or more variables.
Statistics and probability Dr. Khaled Ismael Almghari Phone No:
Introductory Statistics. Inference for Bivariate Data Intro to Inference in Regression Requirements for Linear Regression Linear Relationship Constant.
Predicting Energy Consumption in Buildings using Multiple Linear Regression Introduction Linear regression is used to model energy consumption in buildings.
Inference about the slope parameter and correlation
Sihua Peng, PhD Shanghai Ocean University
Sihua Peng, PhD Shanghai Ocean University
Lecture #26 Thursday, November 17, 2016 Textbook: 14.1 and 14.3
Sihua Peng, PhD Shanghai Ocean University
REGRESSION (R2).
Introduction to Regression Lecture 6.2
Basic Estimation Techniques
Sihua Peng, PhD Shanghai Ocean University
Part Three. Data Analysis
Simple Linear Regression - Introduction
Regression Analysis PhD Course.
BA 275 Quantitative Business Methods
Chapter 12 Inference on the Least-squares Regression Line; ANOVA
Sihua Peng, PhD Shanghai Ocean University
Regression Models - Introduction
OUTLINE Lecture 5 A. Review of Lecture 4 B. Special SLR Models
Sihua Peng, PhD Shanghai Ocean University
Simple Linear Regression
Cases. Simple Regression Linear Multiple Regression.
REVIEW Course Review.
Presentation transcript:

Sihua Peng, PhD Shanghai Ocean University 2017.10 Biostatistics 7. Introduction to Linear models Sihua Peng, PhD Shanghai Ocean University 2017.10

Contents Introduction to R Data sets Introductory Statistical Principles Sampling and experimental design with R Graphical data presentation Simple hypothesis testing Introduction to Linear models Correlation and simple linear regression Single factor classification (ANOVA) Nested ANOVA Factorial ANOVA Simple Frequency Analysis

7. Introduction to Linear models A statistical model is an expression that attempts to explain patterns in the observed values of a response variable by relating the response variable to a set of predictor variables and parameters. response variable = model + error

7.1 Linear models An example of a very simple linear model, is the model used to investigate the linear relationship between a continuous response variable (Y and a single continuous predictor variable, X):

7.2 Linear models in R > Y<-c(0,1,2,4,7,10) > X<-1:6 > plot(Y~X)

7.2 Linear models in R > Fictitious.lm <- lm(Y~X) To examine the estimated parameters (and hypothesis tests) from the fitted model, provide the name of the fitted model as an argument to the summary()function. > summary(Fictitious.lm)