Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study

Size: px
Start display at page:

Download "Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study"

Transcription

1 Paper PO13 Apply Response Surface Analysis for Interaction of Dose Response Combine Treatment Drug Study Tung-Yi (Tony) Wu, Ph.D. Kos Pharmaceuticals Inc., Miami, FL ABSTRACT Combination treatments are widely used in medicine. When a clinical trial employs two (or more) drugs and is expensive, a matrix design with response surface analysis become an essential statistical method to obtain an overall profile, a minimum effective dose and/or maximum percentage change from baseline. In this paper, the author will demonstrate one example of a SAS program (using Proc RSREG and Proc G3D) to obtain response surface results. An example of low-cost response surface method design that does not require all possible dose-pair combination is also included. INTRODUCTION Combination drug treatments may involve synergy or antagonism. For the same combination of drugs, we might have both synergistic effects for dose-pairs in some regions and antagonistic effects in different dose-pair regions. Combination-dosages for prescription drugs for humans means that two (or more) drugs may be combined in a single-dosage form such that each component makes a contribution to the claimed effects of the combination and the dosage of each component is such that the combination is safe and effective for a relevant patient population. Such concurrent therapy is defined in the labeling for the drug [21 CFR ]. In order to obtain information for both effectiveness and safety, a matrix study design with response surface analysis is often used for combination drug treatment. Typically all combinations of doses of the two drugs are tested in humans. However, by looking at the expected matrix responses, a smaller design might be found. FIRST EXAMPLE The first example includes two drugs (A and B) and the response variable of Z (percentage change of response variable), obtained from a prior study sample data from environmental science are used to illustrate this method. The percentage change results (variable: Z) of this study were analyzed by estimating the response surface as a function of A and B. Such an analysis yields a response surface with the following overall structure: Z = ß 0 + ß A*A + ß B*B + B A2 *A 2 + ß B2*B 2 + ß AB*A*B

2 where: Z = percentage change of response variable, % A = A dosage B = B dosage AB = interaction term (combination of A and B) Example of SAS program using Proc RSREG and Proc G3D listed in Appendix I. The response surface analysis of the data was used to identify a percentage change pattern and identify the interaction conditions that can yield a "maximum" percentage change. In Table 1 the response surface analysis are presented (Raymond, 1971). These estimated parameters for the statistics indicated a wellestablished removal pattern which can be described by a response surface model with linear and quadratic terms (see partial F-test and F-test for overall [total] regression results in Table 1 and Appendix II). For this model variable A seems to be the most critical parameter (t-test; in Table 1), whereas the interaction term can be ignored. Canonical analysis of the results yielded negative eigenvalues (i.e and 10.58). This implies the existence of a maximum stationary point. The response surface analysis indicated a pattern which yielded a theoretical maximum percentage change of 88.9% at an A dosage value of 8.56 and B dosage value of 7.51 (i.e., at the stationary point; Figure 2). This finding illustrates the potential use of this procedure to have approximately 89% change of the measure response variable with a recommended A dosage close to 8.5 and, a B dosage above 7. SAS output of the Example I are listed in Appendix II. Table 1 RESPONSE SURFACE ANALYSIS RESULTS Parameters Estimates t-test Prob. ß ß A <0.001 ß B ß A <0.001 Partial F-Ratio test (Prob.) (<0.0001) 7.44 (0.0010) ß B ß AB (0.4456) R 2 = 0.77, F-value = [total regression], Prob. = <0.0001

3 Figure 1: The Response Surface Plot Figure 2: The Contour Plot

4 SECOND EXAMPLE The second example is an on going project, data are not available at this time; however, the study design is as follows: Study design: double-blind, parallel-group, muti-center, ten dose-pairs, escalating study design Study drug A dose: Low, Medium, Medium-High, High Study drug B dose: Low, High Combination of A and B: Low, Medium, Medium-High, High Study drug Placebo: Active Placebo Table 2 shows the study design of a possible efficient response surface clinical study design. This low-cost alternative response surface method design does not requires all possible dose-pair combinations. The partial matrix design of the response surface becomes a cost-effectiveness strategy for clinical studies. Table 2: Example of low-cost response surface method design STUDY DRUG Placebo (B) Low (B) Medium (B) High( B) Placebo(A) X X X Low(A) Medium(A) X X X Medium-High(A) X High (A) X X X CONCLUSIONS In the first example, the response surface design included all possible dosepairs; however, in the pharmaceutical industry the clinical trials are very expensive. Study designs become very important. Any additional dose-pairs will significantly increase the study cost. In the second example, the study design does not include all possible dose-pairs. The matrix design of response surface analysis using Proc RSREG and Proc G3D will be a cost-effectiveness method for statistical analysis. There are some limitations of this method of designing a partial matrix study. Prior data are needed. The example here benefited by having such data. However, other ways of getting prior information might include literature review, pilot study, or expectations for response for which this method might be generalized.

5 REFERENCE 1. Raymond H. Myers: Response Surface Methodology, SAS: SAS System for Regression, Cary, NC, SAS Institute, Inc. 3. SAS: SAS/GRAPH Software, version 6, Cary, NC, SAS Institute, Inc. 4. SAS: User s Guide, Cary, NC, SAS Institute, Inc. 5. Theodore Allen et al, Low-Cost Response Surface Methods From Simulation Optimization, Quality Reliability Engineering International 2002; 18:5-17 TRADEMARKS SAS is a registered trademark of SAS Institute Inc., in the USA and other countries. ACKNOWLEDGMENTS I would like to thanks Phillip Simmons and Caroline Malott for their review and provided great comments. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the author at: Author Name: Tung-Yi (Tony) Wu Company KOS Pharmaceuticals Address: 2200 N. Commerce Parkway (suite 300), Weston, FL Work phone: (954) Fax: (954) twu@kospharm.com

6 APPENDIX I : THE RSREG EXAMPLE ******************************************************************* Program Name: rsreg1.sas Programmed by: Tony Wu Software: SAS 8 *******************************************************************; dm output 'clear;log;zoom off;clear'; libname SUG04 'c:\working_file\'; data PO13; set SUG04.po13; proc sort ; by dosagea dosagea; RUN; Proc rsreg data=po13 out=pr123; model pctchange=dosagea dosageb/lackfit predict residual; ridge max; data grid; do dosagea=1 to 10 by 0.2; do dosageb = 1 to 8 by 0.2; output; data PO13; set po13 grid; dosagea2=dosagea**2; dosageb2=dosageb**2; dosageab=dosagea*dosageb; proc reg data=po13; model pctchange=dosagea dosageb dosagea2 dosageb2 dosageab; output out=results p=yhat r=residual rstudent=rstudent h=hatvalue; id obs; data fit; set results; if pctchange=.; pctchange=yhat; proc g3d data=fit; plot dosagea*dosageb=pctchange / grid caxis=blue xticknum=7 yticknum=9 zticknum=6;;

7 *=== PLOT RESPONSE SURFACE BASE ON Proc RSREG results ===; data abc; a= ; b= ; c= ; d= ; e= ; f= ; do dosagea=1 to 10 by 0.5; do dosageb=1 to 8 by 0.5; output; output; data abcz; set abc ; do pctchange= a + b*dosagea + c*dosageb + d*dosagea*dosagea + e*dosageb*dosageb + f*dosagea*dosageb; output; proc g3d data=abcz; plot dosagea*dosageb=pctchange/ grid caxis=blue xticknum=8 yticknum=10 zticknum=10; format dosagea dosageb pct_change 5.0 ; proc gcontour data=abcz; plot dosagea*dosageb=pctchange / XTICKNUM=11 yticknum=8 levels= ; proc g3grid data=abcz out=gridnums; grid dosagea*dosageb=pctchange / spline smooth=0.05 axis1=1 to 10 by.25 axis2=1 to 8 by.25; run ; proc g3d data=gridnums ; plot dosagea*dosageb=pctchange / grid caxis=black xticknum=8 yticknum=10 zticknum=10; ******************************************************************** End of program. ********************************************************************;

8 APPENDIX II : THE RSREG EXAMPLE OUTPUT The RSREG Procedure Coding Coefficients for the Independent Variables Factor Subtracted off Divided by dosagea dosageb Response Surface for Variable pctchange Response Mean Root MSE R-Square Coefficient of Variation Type I Sum Regression DF of Squares R-Square F Value Pr > F Linear <.0001 Quadratic Crossproduct Total Model <.0001 Sum of Residual DF Squares Mean Square F Value Pr > F Lack of Fit Pure Error Total Error Parameter Estimate from Coded Parameter DF Estimate STD Error t Value Pr > t Data Intercept dosagea < dosageb dosagea*dosagea dosageb*dosagea dosageb*dosageb Sum of Factor DF Squares Mean Square F Value Pr > F dosagea <.0001 dosageb The RSREG Procedure Canonical Analysis of Response Surface Based on Coded Data Critical Value Factor Coded Uncoded dosagea dosageb Predicted value at stationary point: Eigenvectors Eigenvalues dosagea dosageb

F u = t n+1, t f = 1994, 2005

F u = t n+1, t f = 1994, 2005 Forecasting an Electric Utility's Emissions Using SAS/AF and SAS/STAT Software: A Linear Analysis Md. Azharul Islam, The Ohio State University, Columbus, Ohio. David Wang, The Public Utilities Commission

More information

Elementary tests. proc ttest; title3 'Two-sample t-test: Does consumption depend on Damper Type?'; class damper; var dampin dampout diff ;

Elementary tests. proc ttest; title3 'Two-sample t-test: Does consumption depend on Damper Type?'; class damper; var dampin dampout diff ; Elementary tests /********************** heat2.sas *****************************/ title2 'Standard elementary tests'; options pagesize=35; %include 'heatread.sas'; /* Basically the data step from heat1.sas

More information

Final Exam Spring Bread-and-Butter Edition

Final Exam Spring Bread-and-Butter Edition Final Exam Spring 1996 Bread-and-Butter Edition An advantage of the general linear model approach or the neoclassical approach used in Judd & McClelland (1989) is the ability to generate and test complex

More information

Hans Hockey & Kristian Brock Biometrics Matters Ltd, Hamilton, NZ & Cancer Research UK Clinical Trials Unit, Birmingham, UK

Hans Hockey & Kristian Brock Biometrics Matters Ltd, Hamilton, NZ & Cancer Research UK Clinical Trials Unit, Birmingham, UK HOCKEY STICKS AND BROKEN STICKS A DESIGN FOR A SINGLE-TREATMENT, PLACEBO-CONTROLLED, DOUBLE-BLIND, RANDOMIZED CLINICAL TRIAL SUITABLE FOR CHRONIC DISEASES Hans Hockey & Kristian Brock Biometrics Matters

More information

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA Page 1 Two Way ANOVA Two way ANOVA is conceptually like multiple regression, in that we are trying to simulateously assess the effects of more than one X variable on Y. But just as in One Way ANOVA, the

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHODS FOR TRANSLATIONAL & CLINICAL RESEARCH Combination Chemotherapy: DESIGNING CLINICAL RESEARCH Use of a combination of two therapeutics, especially drug-drug combination (called combination

More information

Lecture 2a: Model building I

Lecture 2a: Model building I Epidemiology/Biostats VHM 812/802 Course Winter 2015, Atlantic Veterinary College, PEI Javier Sanchez Lecture 2a: Model building I Index Page Predictors (X variables)...2 Categorical predictors...2 Indicator

More information

!! NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA ! NOTE: The SAS System used:!

!! NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA ! NOTE: The SAS System used:! 1 The SAS System NOTE: Copyright (c) 2002-2010 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.3 (TS1M0) Licensed to UNIVERSITY OF TORONTO/COMPUTING & COMMUNICATIONS, Site 70072784.

More information

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT STAT 512 EXAM I STAT 512 Name (7 pts) Problem Points Score 1 40 2 25 3 28 USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT WRITE LEGIBLY. ANYTHING UNREADABLE WILL NOT BE GRADED GOOD LUCK!!!!

More information

BIOEQUIVALENCE TRIAL INFORMATION FORM (Medicines and Allied Substances Act [No. 3] of 2013 Part V Section 39)

BIOEQUIVALENCE TRIAL INFORMATION FORM (Medicines and Allied Substances Act [No. 3] of 2013 Part V Section 39) ZAMRA BTIF BIOEQUIVALENCE TRIAL INFORMATION FORM (Medicines and Allied Substances Act [No. 3] of 2013 Part V Section 39) The Guidelines on Bioequivalence Studies to be consulted in completing this form.

More information

Computer Handout Two

Computer Handout Two Computer Handout Two /******* senic2.sas ***********/ %include 'senicdef.sas'; /* Effectively, Copy the file senicdef.sas to here */ title2 'Elementary statistical tests'; proc freq; title3 'Use proc freq

More information

BIOEQUIVALENCE TRIAL INFORMATION

BIOEQUIVALENCE TRIAL INFORMATION PRESENTATION OF BIOEQUIVALENCE TRIAL INFORMATION BIOEQUIVALENCE TRIAL INFORMATION GENERAL INSTRUCTIONS: Please review all the instructions thoroughly and carefully prior to completing the Bioequivalence

More information

Read and Describe the SENIC Data

Read and Describe the SENIC Data Read and Describe the SENIC Data If the data come in an Excel spreadsheet (very common), blanks are ideal for missing values. The spreadsheet must be.xls, not.xlsx. Beware of trying to read a.csv file

More information

PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH

PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH COMBINATION THERAPIES : Part II: Measuring Synergistic Effects BASIC QUESTION When both of the agents in a combination are active, that is to

More information

. *increase the memory or there will problems. set memory 40m (40960k)

. *increase the memory or there will problems. set memory 40m (40960k) Exploratory Data Analysis on the Correlation Structure In longitudinal data analysis (and multi-level data analysis) we model two key components of the data: 1. Mean structure. Correlation structure (after

More information

Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2. B. Rosner, 5/09/17

Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2. B. Rosner, 5/09/17 Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2 B. Rosner, 5/09/17 1 Outline 1. Testing for effect modification in logistic regression analyses 2. Conditional logistic

More information

MCW Office of Research Standard Operating Procedure

MCW Office of Research Standard Operating Procedure MCW Office of Research Standard Operating Procedure USE AND STORAGE OF INVESTIGATIONAL DRUGS AND BIOLOGICS Unit: Applies to: Human Research Protections Program (HRPP), Office of Research MCW/FH Faculty

More information

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points]

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Prof. Brent Coull TA Shira Mitchell BIO 226: Applied Longitudinal Analysis Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Purpose: To provide an introduction to the use of PROC MIXED

More information

Week 3 [16+ Sept.] Class Activities. File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts

Week 3 [16+ Sept.] Class Activities. File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts Week 3 [16+ Sept.] Class Activities File: week-03-15sep08.doc/.pdf Directory: \\Muserver2\USERS\B\\baileraj\Classes\sta402\handouts Week 3 Topic -- Complex table construction & output control (i.e., pretty

More information

Balancing the time, cost and risk of drug development. Christina Gustafsson, PhD Pharm, Formulation Scientist at Pharmaceutical Development, APL

Balancing the time, cost and risk of drug development. Christina Gustafsson, PhD Pharm, Formulation Scientist at Pharmaceutical Development, APL Balancing the time, cost and risk of drug development Christina Gustafsson, PhD Pharm, Formulation Scientist at Pharmaceutical Development, APL Communicating vessels Risk Time Cost Communicating vessels

More information

The Plan of Enrichment Designs for Dealing with High Placebo Response

The Plan of Enrichment Designs for Dealing with High Placebo Response The Plan of Enrichment Designs for Dealing with High Placebo Response Xiangmin Zhang Division of Biometrics I/OB/OTS/CDER/FDA Joint work with Dr. Yeh-Fong Chen (FDA) and Prof. Roy Tamura (University of

More information

Timing Production Runs

Timing Production Runs Class 7 Categorical Factors with Two or More Levels 189 Timing Production Runs ProdTime.jmp An analysis has shown that the time required in minutes to complete a production run increases with the number

More information

Clinical Trials A Closer Look

Clinical Trials A Closer Look The Food and Drug Administration (FDA) is the main consumer watchdog for numerous products: Drugs and biologics (prescription and over-the counter) Food Medical devices Animal feed and drugs Cosmetics

More information

Soci Statistics for Sociologists

Soci Statistics for Sociologists University of North Carolina Chapel Hill Soci708-001 Statistics for Sociologists Fall 2009 Professor François Nielsen Stata Commands for Module 11 Multiple Regression For further information on any command

More information

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design Robert A. Vierkant, Terry M. Therneau, Jon L. Kosanke, James M. Naessens Mayo Clinic, Rochester, MN ABSTRACT A matched

More information

COMPOUND MEDICATION NON-FORMULARY (QUALIFIED HEALTH PLANS)

COMPOUND MEDICATION NON-FORMULARY (QUALIFIED HEALTH PLANS) COMPOUND MEDICATION NON-FORMULARY (QUALIFIED HEALTH PLANS) Coverage for services, procedures, medical devices and drugs are dependent upon benefit eligibility as outlined in the member's specific benefit

More information

Bios 312 Midterm: Appendix of Results March 1, Race of mother: Coded as 0==black, 1==Asian, 2==White. . table race white

Bios 312 Midterm: Appendix of Results March 1, Race of mother: Coded as 0==black, 1==Asian, 2==White. . table race white Appendix. Use these results to answer 2012 Midterm questions Dataset Description Data on 526 infants with very low (

More information

Yoshiaki Uyama,, Ph.D. Office of New Drug III (PMDA)

Yoshiaki Uyama,, Ph.D. Office of New Drug III (PMDA) -DSDQ0+/:30'$ 3HUVSHFWLYHDQG6WUDWHJ\ Yoshiaki Uyama,, Ph.D. Office of New Drug III (PMDA) Benefit of Pharmacogenomics Improving benefit/risk ratio More safe, more effective Adjusting Dose Can determine

More information

Psy 420 Midterm 2 Part 2 (Version A) In lab (50 points total)

Psy 420 Midterm 2 Part 2 (Version A) In lab (50 points total) Psy 40 Midterm Part (Version A) In lab (50 points total) A researcher wants to know if memory is improved by repetition (Duh!). So he shows a group of five participants a list of 0 words at for different

More information

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson Compartmental Pharmacokinetic Analysis Dr Julie Simpson Email: julieas@unimelb.edu.au BACKGROUND Describes how the drug concentration changes over time using physiological parameters. Gut compartment Absorption,

More information

ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2014

ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2014 ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2014 Instructions: Answer all five (5) questions. Point totals for each question are given in parentheses. The parts within each

More information

VALIDATION OF ANALYTICAL PROCEDURES: METHODOLOGY *)

VALIDATION OF ANALYTICAL PROCEDURES: METHODOLOGY *) VALIDATION OF ANALYTICAL PROCEDURES: METHODOLOGY *) Guideline Title Validation of Analytical Procedures: Methodology Legislative basis Directive 75/318/EEC as amended Date of first adoption December 1996

More information

Medicines Control Authority Of Zimbabwe

Medicines Control Authority Of Zimbabwe Medicines Control Authority Of Zimbabwe BIOEQUIVALENCE APPLICATION FORM Form: EVF03 This application form is designed to facilitate information exchange between the Applicant and the MCAZ for bioequivalence

More information

The SAS System 1. RM-ANOVA analysis of sheep data assuming circularity 2

The SAS System 1. RM-ANOVA analysis of sheep data assuming circularity 2 The SAS System 1 Obs no2 sheep time y 1 1 1 time1 2.197 2 1 1 time2 2.442 3 1 1 time3 2.542 4 1 1 time4 2.241 5 1 1 time5 1.960 6 1 1 time6 1.988 7 1 2 time1 1.932 8 1 2 time2 2.526 9 1 2 time3 2.526 10

More information

Multiple Imputation and Multiple Regression with SAS and IBM SPSS

Multiple Imputation and Multiple Regression with SAS and IBM SPSS Multiple Imputation and Multiple Regression with SAS and IBM SPSS See IntroQ Questionnaire for a description of the survey used to generate the data used here. *** Mult-Imput_M-Reg.sas ***; options pageno=min

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

Guiding dose escalation studies in Phase 1 with unblinded modeling

Guiding dose escalation studies in Phase 1 with unblinded modeling Guiding dose escalation studies in Phase 1 with unblinded modeling Andreas Krause Lead Scientist Modeling & Simulation Andreas.Krause@idorsia.com Basel Biometrics Section (BBS) Seminar: Innovative model-based

More information

SAS/STAT 13.1 User s Guide. Introduction to Multivariate Procedures

SAS/STAT 13.1 User s Guide. Introduction to Multivariate Procedures SAS/STAT 13.1 User s Guide Introduction to Multivariate Procedures This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

Optimization by RSM of Reinforced Concrete Beam Process Parameters

Optimization by RSM of Reinforced Concrete Beam Process Parameters American Journal of Mechanical Engineering, 2018, Vol. 6, No. 2, 66-74 Available online at http://pubs.sciepub.com/ajme/6/2/5 Science and Education Publishing DOI:10.12691/ajme-6-2-5 Optimization by RSM

More information

All Possible Mixed Model Selection - A User-friendly SAS Macro Application

All Possible Mixed Model Selection - A User-friendly SAS Macro Application All Possible Mixed Model Selection - A User-friendly SAS Macro Application George C J Fernandez, University of Nevada - Reno, Reno NV 89557 ABSTRACT A user-friendly SAS macro application to perform all

More information

Exploring Functional Forms: NBA Shots. NBA Shots 2011: Success v. Distance. . bcuse nbashots11

Exploring Functional Forms: NBA Shots. NBA Shots 2011: Success v. Distance. . bcuse nbashots11 NBA Shots 2011: Success v. Distance. bcuse nbashots11 Contains data from http://fmwww.bc.edu/ec-p/data/wooldridge/nbashots11.dta obs: 199,119 vars: 15 25 Oct 2012 09:08 size: 24,690,756 ------------- storage

More information

Process Characterization Essentials Part I: Process

Process Characterization Essentials Part I: Process Process Characterization Essentials Part I: Process Understanding and Health Authorities Guidance Thomas A. Little Ph.D. 2/16/2017 President, Thomas A. Little Consulting, Bioassay Sciences 12401 N Wildflower

More information

Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays

Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays IIR Third Annual Cell Based Assays Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays Workshop Instructor: John R. Dunn, Ph.D. Chief Technical Officer Brendan

More information

Introduction to Multivariate Procedures (Book Excerpt)

Introduction to Multivariate Procedures (Book Excerpt) SAS/STAT 9.22 User s Guide Introduction to Multivariate Procedures (Book Excerpt) SAS Documentation This document is an individual chapter from SAS/STAT 9.22 User s Guide. The correct bibliographic citation

More information

How to use ANOVA in Qlucore Omics Explorer

How to use ANOVA in Qlucore Omics Explorer How to use ANOVA in Qlucore Omics Explorer Content 1 Introduction... 3 2 Introduction to ANOVA... 3 2.1 Model A: Independent measures, single factor design... 3 2.2 Model B: Independent measures, factorial

More information

GUIDELINE FOR THE STABILITY TESTING

GUIDELINE FOR THE STABILITY TESTING 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 GUIDELINE FOR THE STABILITY TESTING OF NON-PRESCRIPTION (OTC)

More information

Creative Commons Attribution-NonCommercial-Share Alike License

Creative Commons Attribution-NonCommercial-Share Alike License Author: Brenda Gunderson, Ph.D., 2015 License: Unless otherwise noted, this material is made available under the terms of the Creative Commons Attribution- NonCommercial-Share Alike 3.0 Unported License:

More information

The Multivariate Regression Model

The Multivariate Regression Model The Multivariate Regression Model Example Determinants of College GPA Sample of 4 Freshman Collect data on College GPA (4.0 scale) Look at importance of ACT Consider the following model CGPA ACT i 0 i

More information

Shelf Life Determination: The PQRI Stability Shelf Life Working Group Initiative

Shelf Life Determination: The PQRI Stability Shelf Life Working Group Initiative Shelf Life Determination: The PQRI Stability Shelf Life Working Group Initiative Understanding Shelf Life What is the true (but unknown) shelf life of a product? The period of time during which a pharmaceutical

More information

Clinical trial design issues and options for study of rare diseases

Clinical trial design issues and options for study of rare diseases Clinical trial design issues and options for study of rare diseases November 3, 2016 Jeffrey Krischer, PhD Rare Diseases Clinical Research Network Rare Diseases Clinical Research Network (RDCRN) is coordinated

More information

Quadratic Regressions Group Acitivity 2 Business Project Week #4

Quadratic Regressions Group Acitivity 2 Business Project Week #4 Quadratic Regressions Group Acitivity 2 Business Project Week #4 In activity 1 we created a scatter plot on the calculator using a table of values that were given. Some of you were able to create a linear

More information

Model-based Designs in Oncology Dose Finding Studies

Model-based Designs in Oncology Dose Finding Studies Cytel Workshop 2015 Model-based Designs in Oncology Dose Finding Studies Ling Wang Overview of Oncology Dose Finding Studies Oncology is a special therapeutic area in which dose finding studies, including

More information

Evaluating dose-response under model uncertainty using several nested models

Evaluating dose-response under model uncertainty using several nested models Evaluating dose-response under model uncertainty using several nested models Corine Baayen 1,2, Philip Hougaard 1 & Christian Pipper 2 1 H. Lundbeck A/S 2 University of Copenhagen October 2014 Baayen,

More information

Alternative Trial Designs

Alternative Trial Designs Alternative Trial Designs STATS 773: DESIGN AND ANALYSIS OF CLINICAL TRIALS Dr Yannan Jiang Department of Statistics May 16 th 01, Wednesday, 08:30-10:00 Standard Design of RCT Individual subject is randomly

More information

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Program Note 12.1 - One-Way ANOVA and Multiple Comparisons The Stata command

More information

You can find the consultant s raw data here:

You can find the consultant s raw data here: Problem Set 1 Econ 475 Spring 2014 Arik Levinson, Georgetown University 1 [Travel Cost] A US city with a vibrant tourist industry has an industrial accident (a spill ) The mayor wants to sue the company

More information

PROC Report: Various reporting layouts in clinical study reports and Advance Techniques

PROC Report: Various reporting layouts in clinical study reports and Advance Techniques PROC Report: Various reporting layouts in clinical study reports and Advance Techniques Santosh Bari, Scandent Group Inc. (a member of Xchanging Group) ABSTRACT Various clinical study report layouts can

More information

Facilitating Antibacterial Drug Development: Bayesian vs Frequentist Methods

Facilitating Antibacterial Drug Development: Bayesian vs Frequentist Methods Facilitating Antibacterial Drug Development: Bayesian vs Frequentist Methods Scott S. Emerson, M.D., Ph.D. Professor of Biostatistics University of Washington The Brookings Institution May 9, 2010 First:

More information

Validation of Analytical Methods used for the Characterization, Physicochemical and Functional Analysis and of Biopharmaceuticals.

Validation of Analytical Methods used for the Characterization, Physicochemical and Functional Analysis and of Biopharmaceuticals. Validation of Analytical Methods used for the Characterization, Physicochemical and Functional Analysis and of Biopharmaceuticals. 1 Analytical Method Validation: 1..1 Philosophy: Method validation is

More information

Adaptive Dose Ranging Studies:

Adaptive Dose Ranging Studies: Adaptive Dose Ranging Studies: Flexible, Adaptive Dose-Finding Designs Frank Bretz and José Pinheiro Novartis Pharmaceuticals Tokyo University of Science, July 28, 2006 Outline Background and motivation

More information

29 August Dear Sir/Madam:

29 August Dear Sir/Madam: 29 August 2016 Directorate General for Health and Food Safety DG SANTE Unit B4 "Medical products Quality, Safety and Innovation" European Commission F101 08/058 B-1049 Brussels RE: Public consultation

More information

Utilities and Pitfalls of Modeling & Simulation in Pivotal Trials

Utilities and Pitfalls of Modeling & Simulation in Pivotal Trials Utilities and Pitfalls of Modeling & Simulation in Pivotal Trials H.M. James Hung, Ph.D Div. of Biometrics I, OB/OTS/CDER U.S. Food and Drug Administration Presented in PhRMA/FDA Workshop, October 28,

More information

Probability Of Booking

Probability Of Booking Axis Title Web Social Analytics Air France Assignment 1 Spring 216 Shuhua Zhu Assignment 1 Question 1: CTR TCR NET REVEAVE. COSROA AVE. REV PROB COUNT 451 451 451 451 459 368 451 MAX 2.% 9.% $549,524 $1.

More information

Bayesian Designs for Clinical Trials in Early Drug Development

Bayesian Designs for Clinical Trials in Early Drug Development Vol. 3, No. 6, June 007 Can You Handle the Truth? Bayesian Designs for Clinical Trials in Early Drug Development By St. Clare Chung and Miklos Schulz Introduction A clinical trial is designed to answer

More information

VICH Topic GL2 (Validation: Methodology) GUIDELINE ON VALIDATION OF ANALYTICAL PROCEDURES: METHODOLOGY

VICH Topic GL2 (Validation: Methodology) GUIDELINE ON VALIDATION OF ANALYTICAL PROCEDURES: METHODOLOGY The European Agency for the Evaluation of Medicinal Products Veterinary Medicines Evaluation Unit CVMP/VICH/591/98-FINAL London, 10 December 1998 VICH Topic GL2 (Validation: Methodology) Step 7 Consensus

More information

EffTox Users Guide and Tutorial (version 2.9)

EffTox Users Guide and Tutorial (version 2.9) EffTox Users Guide and Tutorial (version 2.9) Introduction This program is a (beta) implementation of the dose-finding method described in "Dose- Finding Based on Efficacy-Toxicity Trade-Offs" by Peter

More information

Group Sequential Monitoring of Clinical. Trials with Multiple Endpoints. Christopher Jennison, Dept of Mathematical Sciences, University of Bath, UK

Group Sequential Monitoring of Clinical. Trials with Multiple Endpoints. Christopher Jennison, Dept of Mathematical Sciences, University of Bath, UK Group Sequential Monitoring of Clinical Trials with Multiple Endpoints Christopher Jennison, Dept of Mathematical Sciences, University of Bath, UK Stanford February 2004 1 Example 1: A diabetes trial O

More information

What Is Conjoint Analysis? DSC 410/510 Multivariate Statistical Methods. How Is Conjoint Analysis Done? Empirical Example

What Is Conjoint Analysis? DSC 410/510 Multivariate Statistical Methods. How Is Conjoint Analysis Done? Empirical Example What Is Conjoint Analysis? DSC 410/510 Multivariate Statistical Methods Conjoint Analysis 1 A technique for understanding how respondents develop preferences for products or services Also known as trade-off

More information

Regression diagnostics

Regression diagnostics Regression diagnostics Biometry 755 Spring 2009 Regression diagnostics p. 1/48 Introduction Every statistical method is developed based on assumptions. The validity of results derived from a given method

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS CLINICAL TRIALS FREQUENTLY ASKED QUESTIONS PARTICIPATING IN A CLINICAL TRIAL What is a clinical trial? Clinical trials are research studies that involve people. Through clinical trials, researchers find

More information

It s About Time! A Primer on Time-Slotting of Data Using SAS Maria Y. Reiss, Wyeth Research, Collegeville, PA

It s About Time! A Primer on Time-Slotting of Data Using SAS Maria Y. Reiss, Wyeth Research, Collegeville, PA It s About Time! A Primer on Time-Slotting of Data Using SAS Maria Y. Reiss, Wyeth Research, Collegeville, PA INTRODUCTION Many research studies have a set schedule for data collection. For example, in

More information

Categorical Variables, Part 2

Categorical Variables, Part 2 Spring, 000 - - Categorical Variables, Part Project Analysis for Today First multiple regression Interpreting categorical predictors and their interactions in the first multiple regression model fit in

More information

Bayesian analysis for small sample size trials using informative priors derived from historical data

Bayesian analysis for small sample size trials using informative priors derived from historical data EFSPI & BBS Small populations and level of evidence Bayesian analysis for small sample size trials using informative priors derived from historical data /////////// Andreas Kaiser Bayer AG, Pharmaceuticals

More information

8. Clinical Trial Assessment Phase II

8. Clinical Trial Assessment Phase II 8. Clinical Trial Assessment Phase II Junko Sato, PhD Office of New Drug I, PMDA Disclaimer: The information within this presentation is based on the presenter s expertise and experience, and represents

More information

Adaptive Model-Based Designs in Clinical Drug Development. Vlad Dragalin Global Biostatistics and Programming Wyeth Research

Adaptive Model-Based Designs in Clinical Drug Development. Vlad Dragalin Global Biostatistics and Programming Wyeth Research Adaptive Model-Based Designs in Clinical Drug Development Vlad Dragalin Global Biostatistics and Programming Wyeth Research 2007 Rutgers Biostatistics Day February 16, 2007 Outline Definition and general

More information

395 South Youngs Road Buffalo, New York cognigencorp.com An On-Site 2-Day Workshop in Engineering The Pharmacometric Enterprise

395 South Youngs Road Buffalo, New York cognigencorp.com An On-Site 2-Day Workshop in Engineering The Pharmacometric Enterprise 395 South Youngs Road Buffalo, New York 14221 716.633.3463 cognigencorp.com An On-Site 2-Day Workshop in Engineering The Pharmacometric Enterprise A Workshop For Improving the Efficiency and Effectiveness

More information

ESTIMATION OF FORAGE MASS OF OLD WORLD BLUESTEM USING A VISUAL OBSTRUCTION MEASUREMENT TECHNIQUE

ESTIMATION OF FORAGE MASS OF OLD WORLD BLUESTEM USING A VISUAL OBSTRUCTION MEASUREMENT TECHNIQUE ESTIMATION OF FORAGE MASS OF OLD WORLD BLUESTEM USING A VISUAL OBSTRUCTION MEASUREMENT TECHNIQUE 1999 Animal Science Research Report Authors: Story in Brief Pages 194-199 C.J. Ackerman, H.T. Purvis II,

More information

EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES MICHAEL MCCANTS

EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES MICHAEL MCCANTS EFFICACY OF ROBUST REGRESSION APPLIED TO FRACTIONAL FACTORIAL TREATMENT STRUCTURES by MICHAEL MCCANTS B.A., WINONA STATE UNIVERSITY, 2007 B.S., WINONA STATE UNIVERSITY, 2008 A THESIS submitted in partial

More information

Equivalency Testing: The roles of assay precision, truth, bias, tolerance, risk and control strategy in setting equivalence margins

Equivalency Testing: The roles of assay precision, truth, bias, tolerance, risk and control strategy in setting equivalence margins Equivalency Testing: The roles of assay precision, truth, bias, tolerance, risk and control strategy in setting equivalence margins Kim E. Zerba, Sutan Wu 1 and Gary McGeorge Bristol-Myers Squibb, New

More information

PharmaSUG 2014 BB18 INTRODUCTION TO SUMMARY LEVEL CLINICAL SITE (SLCS) DATASET

PharmaSUG 2014 BB18 INTRODUCTION TO SUMMARY LEVEL CLINICAL SITE (SLCS) DATASET PharmaSUG 2014 BB18 Risk-Based Approach to Identifying and Selecting Clinical Sites for Sponsor s Preparation for FDA/EMA Inspection Xiangchen (Bob) Cui, Alkermes, Inc, Waltham, MA ABSTRACT In December

More information

The Role of a Clinical Statistician in Drug Development By: Jackie Reisner

The Role of a Clinical Statistician in Drug Development By: Jackie Reisner The Role of a Clinical Statistician in Drug Development By: Jackie Reisner Types of studies within clinical development Phase I Phase II Phase III Phase IV Phase I First Human Dose (FHD) Young healthy

More information

Cleaning and Cleaning Validation of API Plant and Equipment

Cleaning and Cleaning Validation of API Plant and Equipment Regulatory Basis: FDA Quality Systems Regulations Reference: FDA CFR - Code of Federal Regulations Title 21 1 Purpose The purpose of this guideline is: To define the requirements for cleaning plant and

More information

The evaluation of the full-factorial attraction model performance in brand market share estimation

The evaluation of the full-factorial attraction model performance in brand market share estimation African Journal of Business Management Vol.2 (7), pp. 119-124, July 28 Available online at http://www.academicjournals.org/ajbm ISSN 1993-8233 28 Academic Journals Full Length Research Paper The evaluation

More information

Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility

Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility Document Detail Document type Standard Operating Procedure CRF-STU-SOP-1: Management and Accountability

More information

Proof of Concept Vs Proof of Value

Proof of Concept Vs Proof of Value Evidence Requirements Supporting Critical Decisions in Pharmacotherapeutics: Proof of Concept Vs Proof of Value RG Peterson MD, PhD, MPH Executive Director Drug Safety and Effectiveness Network Canadian

More information

Paper Principal Component Regression as a Countermeasure against Collinearity Chong Ho Yu, Ph.D.

Paper Principal Component Regression as a Countermeasure against Collinearity Chong Ho Yu, Ph.D. Paper 73333 Principal Component Regression as a Countermeasure against Collinearity Chong Ho Yu, Ph.D. ABSTRACT There are different approaches to counteract the threat of multicollinearity in regression

More information

Application: Effects of Job Training Program (Data are the Dehejia and Wahba (1999) version of Lalonde (1986).)

Application: Effects of Job Training Program (Data are the Dehejia and Wahba (1999) version of Lalonde (1986).) Application: Effects of Job Training Program (Data are the Dehejia and Wahba (1999) version of Lalonde (1986).) There are two data sets; each as the same treatment group of 185 men. JTRAIN2 includes 260

More information

The Construction of a Clinical Trial. Lee Ann Lawson MS ARNP CCRC

The Construction of a Clinical Trial. Lee Ann Lawson MS ARNP CCRC The Construction of a Clinical Trial Lee Ann Lawson MS ARNP CCRC 1 Objectives Review Phases of Clinical Research Discuss Orphan Drug Act Discuss regulatory agencies Overview phases of clinical research

More information

A Modeling and Simulation Case Study

A Modeling and Simulation Case Study A Modeling and Simulation Case Study Impact on an Early Clinical Development Program Ken Kowalski, Steve Olson, Ann Remmers Pfizer Global Research and Development Ann Arbor, MI PAGE June 14-16, 16, 26

More information

Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility

Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility Management and Accountability of Investigational Medicinal Products in the King s Clinical Research Facility Document Detail Document type Standard Operating Procedure CRF-STU-SOP-1: Management and Accountability

More information

Pharmaceutical Application for Stability (PASS) Analysis

Pharmaceutical Application for Stability (PASS) Analysis Pharmaceutical Application for Stability (PASS) Analysis Dr. Vesna Luzar-Stiffler 1,2 and Dr. Charles Stiffler 1 1 CAIR Research Center and 2 University Computing Centre, Zagreb, Croatia Abstract: PASS

More information

The use of model based dose response in choosing doses in a lean clinical development plan. Alun Bedding, PhD

The use of model based dose response in choosing doses in a lean clinical development plan. Alun Bedding, PhD The use of model based dose response in choosing doses in a lean clinical development plan Alun Bedding, PhD What is Different About this Program? First in Human Proof of Concept/Dose Finding Conclusions

More information

To document the review procedures for a submission regarding compassionate/treatment use of investigational drugs, biologics and devices.

To document the review procedures for a submission regarding compassionate/treatment use of investigational drugs, biologics and devices. UNIVERSITY OF TENNESSEE GRADUATE SCHOOL OF MEDICINE INSTITUTIONAL REVIEW BOARD COMPASSIONATE/TREATMENT USE OF MEDICAL DRUGS, BIOLOGICS AND DEVICES I. PURPOSE To document the review procedures for a submission

More information

5 th Training Workshop for Micro-, Small- and Medium- Sized Enterprises (SMEs)

5 th Training Workshop for Micro-, Small- and Medium- Sized Enterprises (SMEs) 5 th Training Workshop for Micro-, Small- and Medium- Sized Enterprises (SMEs) GCP Requirements and Compliance Dr. Katalina Mettke BfArM, Germany Agenda Specialities of Early Development Trials Examples

More information

ICON MEDICINE FORMULARY PROCESS

ICON MEDICINE FORMULARY PROCESS 1 ICON MEDICINE FORMULARY PROCESS DISCLAIMER The ICON Formulary process is an ethical and scientific cost sensitive exercise performed as described in this document. ICON or Isimo do not have any influence

More information

GEN-003. Positive Phase 2b Clinical Efficacy Results. Immunotherapy Candidate for Genital Herpes. 12-Month Top-line Results

GEN-003. Positive Phase 2b Clinical Efficacy Results. Immunotherapy Candidate for Genital Herpes. 12-Month Top-line Results GEN-003 Positive Phase 2b Clinical Efficacy Results Immunotherapy Candidate for Genital Herpes 12-Month Top-line Results Disclaimer This presentation contains forward-looking statements that are within

More information

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION PLS 802 Spring 2018 Professor Jacoby COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION This handout shows the log of a STATA session that compares alternative estimates of

More information

Predicting user rating on Amazon Video Game Dataset

Predicting user rating on Amazon Video Game Dataset Predicting user rating on Amazon Video Game Dataset CSE190A Assignment2 Hongyu Li UC San Diego A900960 holi@ucsd.edu Wei He UC San Diego A12095047 whe@ucsd.edu ABSTRACT Nowadays, accurate recommendation

More information

ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2011

ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2011 ECONOMICS AND ECONOMIC METHODS PRELIM EXAM Statistics and Econometrics May 2011 Instructions: Answer all five (5) questions. Point totals for each question are given in parentheses. The parts within each

More information