Orlistat for Fat Absorption

Slides:



Advertisements
Similar presentations
The Simple Linear Regression Model Specification and Estimation Hill et al Chs 3 and 4.
Advertisements

Hypothesis Testing Goal: Make statement(s) regarding unknown population parameter values based on sample data Elements of a hypothesis test: Null hypothesis.
Weighted Least Squares Regression Dose-Response Study for Rosuvastin in Japanese Patients with High Cholesterol "Randomized Dose-Response Study of Rosuvastin.
Randomized Complete Block and Repeated Measures (Each Subject Receives Each Treatment) Designs KNNL – Chapters 21,
Ridge Regression Population Characteristics and Carbon Emissions in China ( ) Q. Zhu and X. Peng (2012). “The Impacts of Population Change on Carbon.
1 SSS II Lecture 1: Correlation and Regression Graduate School 2008/2009 Social Science Statistics II Gwilym Pryce
Linear regression models
A Short Introduction to Curve Fitting and Regression by Brad Morantz
Some Terms Y =  o +  1 X Regression of Y on X Regress Y on X X called independent variable or predictor variable or covariate or factor Which factors.
Psychology 202b Advanced Psychological Statistics, II February 1, 2011.
1-1 Regression Models  Population Deterministic Regression Model Y i =  0 +  1 X i u Y i only depends on the value of X i and no other factor can affect.
Hypothesis Testing and Dynamic Treatment Regimes S.A. Murphy, L. Gunter & B. Chakraborty ENAR March 2007.
Clustering.
Correlation. Two variables: Which test? X Y Contingency analysis t-test Logistic regression Correlation Regression.
Analysis of Individual Variables Descriptive – –Measures of Central Tendency Mean – Average score of distribution (1 st moment) Median – Middle score (50.
This Week Continue with linear regression Begin multiple regression –Le 8.2 –C & S 9:A-E Handout: Class examples and assignment 3.
Linear Regression and Correlation Explanatory and Response Variables are Numeric Relationship between the mean of the response variable and the level of.
Introduction to Linear Regression and Correlation Analysis
Regression Analysis Regression analysis is a statistical technique that is very useful for exploring the relationships between two or more variables (one.
1 FORECASTING Regression Analysis Aslı Sencer Graduate Program in Business Information Systems.
Nonlinear Models. Learning Example: knnl533.sas Y = relative efficiency of production of a new product (1/expected cost) X 1 : Location A : X 1 = 1, B:
Inference for Regression Simple Linear Regression IPS Chapter 10.1 © 2009 W.H. Freeman and Company.
Stat 112: Notes 2 Today’s class: Section 3.3. –Full description of simple linear regression model. –Checking the assumptions of the simple linear regression.
1 Analysis Considerations in Industrial Split-Plot Experiments When the Responses are Non-Normal Timothy J. Robinson University of Wyoming Raymond H. Myers.
Ch14: Linear Least Squares 14.1: INTRO: Fitting a pth-order polynomial will require finding (p+1) coefficients from the data. Thus, a straight line (p=1)
Simulation Study for Longitudinal Data with Nonignorable Missing Data Rong Liu, PhD Candidate Dr. Ramakrishnan, Advisor Department of Biostatistics Virginia.
6.1 Confidence Intervals for the Mean (  known) Key Concepts: –Point Estimates –Building and Interpreting Confidence Intervals –Margin of Error –Relationship.
G Lecture 71 Revisiting Hierarchical Mixed Models A General Version of the Model Variance/Covariances of Two Kinds of Random Effects Parameter Estimation.
Chapter 14 EXPLORATORY FACTOR ANALYSIS. Exploratory Factor Analysis  Statistical technique for dealing with multiple variables  Many variables are reduced.
The “Big Picture” (from Heath 1995). Simple Linear Regression.
Chapter 11 Linear Regression and Correlation. Explanatory and Response Variables are Numeric Relationship between the mean of the response variable and.
Chapter 12 REGRESSION DIAGNOSTICS AND CANONICAL CORRELATION.
Stats Methods at IC Lecture 3: Regression.
Regression.
Correlation and Simple Linear Regression
Inference in Simple Linear Regression
Net metabolic rate of walking at 1. 5 m/s vs
Linear Mixed Models in JMP Pro
CH 5: Multivariate Methods
CJT 765: Structural Equation Modeling
Regression.
1-Way Random Effects Model
Simple Linear Regression - Introduction
Regression Analysis 4e Montgomery, Peck & Vining
Nonlinear Regression KNNL – Chapter 13.
Descriptive Statistics: Numerical Methods
Statistical Methods For Engineers
Matrix Approach to 1-Way ANOVA
دانشگاه صنعتی امیرکبیر Instructor : Saeed Shiry
Estimates and 95% CIs of between- and within-pair variations for SS and OS twin pairs and achievement test scores in mathematics and reading assessed in.
Regression.
Regression.
'Linear Hierarchical Models'
Matrix Approach to 1-Way ANOVA
J.-F. Pâris University of Houston
Linear regression Fitting a straight line to observations.
Nonlinear regression.
Regression.
Regression Chapter 8.
Regression.
Randomized Complete Block and Repeated Measures (Each Subject Receives Each Treatment) Designs KNNL – Chapters 21,
Nonlinear Fitting.
Regression.
Simple Linear Regression
Linear Regression and Correlation
Matrix Approach to 1-Way ANOVA
(Approximately) Bivariate Normal Data and Inference Based on Hotelling’s T2 WNBA Regular Season Home Point Spread and Over/Under Differentials
Linear Regression and Correlation
Linear Regression and Correlation
Factor Analysis.
Presentation transcript:

Orlistat for Fat Absorption Nonlinear Regression Orlistat for Fat Absorption Zhi, J., Melia, A.T., Guericiolini, R. et al. (1994) “Retrospective Population-Based Analysis of the Dose-Response (Fecal Fat Excretion) Relationship of Orlistat in Normal and Obese Volunteers,” Clinical Pharmacology and Therapeutics, 56:82-85

Data Description 163 Patients assigned to one of the following doses (mg/day) of orlistat: 0, 60,120,150,240,300,480,600,1200 Response measured was fecal fat excretion (purpose is to inhibit fat absorption, so higher levels of response are considered favorable) Plot of raw data displays a generally increasing but nonlinear pattern and large amount of variation across subjects

Nonlinear Regression Model Simple Maximum Effect (Emax) model: b0 ≡ Mean Response at Dose 0 b1 ≡ Maximal Effect of Orlistat (b0+ b1 = Maximum Mean Response) b2 ≡ Dose providing 50% of maximal effect (ED50)

Nonlinear Least Squares

Nonlinear Least Squares

Nonlinear Least Squares

Estimated Variance-Covariance Matrix

Orlistat Example Reasonable Starting Values: b0: Mean of 0 Dose Group: 5 b1: Difference between highest mean and dose 0 mean: 33-5=28 b2: Dose with mean halfway between 5 and 33: 160 Create Vectors Y and f (b0) Generate matrix F (b0) Obtain first “new” estimate of b Continue to Convergence

Orlistat Example – Iteration History (Tolerance = .0001)

Variance Estimates/Confidence Intervals Parameter Estimate Std. Error 95% CI b0 6.12 1.08 (3.96 , 8.28) b1 27.62 3.48 (20.66 , 34.58) b2 124.7 47.31 (30.08 , 219.32)

SAS Code Proc nlin; Parms b0=5 b1=28 b2=160; Model y = b0 + ((b1*x)/(b2+x)); Der.b0 = 1; Der.b1 = x/(b2+x); Der.b2 = -((b1*x)/((b2+x)**2)); Run;