BIOEQUIVALENCE STANDARDIZED Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary

Size: px
Start display at page:

Download "BIOEQUIVALENCE STANDARDIZED Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary"

Transcription

1 BIOEQUIVALENCE STANDARDIZED Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary As the attention of pharmaceutical companies focused towards generic drugs, the design and analysis of bioequivalence studies - aimed to demonstrate bioequivalence between the generic and original drug product - have gained an increasing importance over the past decade. Their usual 2x2 cross-over design is suitable for standardization because ICH and FDA guidelines prescribe clearly the procedures to be applied. The SAS application presented comprises all the steps which involve statistics during a bioequivalence study: 1. Sample size evaluation 2. Evaluation of pharmacokinetic parameters from the raw data 3. Internal pilot study for an eventual correction of the sample size (assessing only the coefficient of variation, without affecting type I and type II error) 4. Lists for individual data 5. Graphs for individual plots of plasma concentration versus time 6. Lund s test for outliers 7. GLM for parametric evaluation (of logarithmically transformed data) and the calculation of confidence intervals 8. Nonparametric confidence intervals This application has the advantages specific to standardization: keeping the same data structure for all studies and doing always the same steps shortens considerably the time needed for the evaluation of a study and can be easily used even by nonstatisticians. The tables and lists have the same format for each study and this enhances the search in the final report. 1. Sample size evaluation The formulas (1) used are:

2 [( α, 2 2) ( β 22, 2) ][ / ln( 125. )] n t n + t n CV 2 2 [( α, 2 2) ( β 22, 2) ][ / ln( 125. ln θ) ] 2 2 n t n + t n CV and n [ t( α, 2n 2) + t( β 22, n 2) ][ CV / ln( 08. ln θ) ] 2 2 for θ=1 for θ>1 for θ<1 where θ denotes the anticipated ratio of the geometric means of the two formulations. This application has an interface suggesting to the user which kind of previous knowledge he needs to plan the study: The critical succes factor widget is divided into three zones: the domain of highly variable drugs is marked with red as a warning. 2. Pharmacokinetic parameters are evaluated in the usual manner: trapezoidal approximation for AUC and t max, C max calculated from the raw data without any interpolation. 3. The possibility of an internal pilot study (2) is included. The same model is fitted as in the final evaluation (proc glm) but the only printed result is the coefficient of

3 variation calculated from ANOVA residuals. In this way (without assessing the proportion of geometric means) the type I error does not increase (computer simulations were done to prove that type I error does not change considerably). 4. Lists for individual data are prepared by proc report. 5. Graphs are produced by proc gplot. 6. Lund s test is the only test for detecting outliers which is accepted by the guidelines (3). This test fits again the same model as in the final evaluation and it chooses the observation with the largest studentized residual (4). The code of this macro is: %macro lund(dsname,varname,clsvar,mod); data bioekvi; set &dsname; logauc=&varname; proc glm data=bioekvi outstat=ki1 noprint; class &clsvar; model logauc = &mod; output out=ki residual=res stdr=std; data b; set ki; studres=res/std; set ki1; if _type_= ERROR then do; call symput( dgf,left(put(df,3.))); proc univariate data=b noprint; var studres; output out=ki2 n=n max=max; options linesize=70 pagesize=54; file print; set ki2; alfa=0.01; n1=&dgf; f=finv(1-alfa/n,1,n1-1); value=sqrt(n1*f/(n1-1+f)); call symput( mmax,left(put(max,9.6))); if max<value then do; put / The max. of studentized residual = max ; / upper limit = value 5.3 At level alfa no outlier detected ; else do;

4 put / The max. of studentized residual = max ; / upper limit = value 5.3; put / max is an outlier at level alfa; file print; set b; if studres>=&mmax then do; put / The max. of the studentized residual is attained at subject: subject; %mend lund; In case of an outlier significant at level 0.01 the final evaluation is performed with and without the outlier. 7. The parametric evaluation of the logaritmically transformed parameters is done by proc glm in the following way: proc glm data=&dsname outstat=out1; class sequence subject PERIOD treat; model logauc = sequence PERIOD treat subject(sequence); test h=sequence e=subject(sequence); lsmeans treat/out=out2; estimate Test vs. Reference treat -1 1; Two SAS datasets are created (out1 containing the mean square errors and the degrees of freedom and out2 containing the least-square means of the two treatment groups) which enable the calculation of the confidence limits and their back-transformation to the original scale. 8. Nonparametric confidence intervals are evaluated applying the Hodges-Lehman method (5). The macro uses proc sql to create all the differences possible between the two groups distinguished by their sequence number. The code is the following (maybe it is not the shortest but the simplest way to implement the Hodges-Lehman method): %macro numobs(dsn); %global num; if 0 then set &dsn nobs=count; call symput( num,left(put(count,8.))); stop; %mend numobs; %macro numobs1(dsn); %global num1; if 0 then set &dsn nobs=count; call symput( num1,left(put(count,8.))); stop; %mend numobs1; %macro tmax(dsname);

5 */ data c (rename=(tmax=tmax1)); /* az elso periodus kivalasztasa set &dsname; where period=1; data b (rename=(tmax=tmax2)); set &dsname; where period=2; proc sort data=c; by subject; proc sort data=b; by subject; data c; merge c b; by subject; data d; set c; y1=tmax1-tmax2; y2=tmax1-tmax2; data e; set d; where sequence=1; %numobs(e); data f; set d; where sequence=2; %numobs1(f); proc sql; create table cross as select e.y1,f.y2 from e e, f f ; quit; data f; set cross; z=y1-y2; proc univariate data=f noprint; var z; output out=ki median=median n=m; data nez; set ki; c=&num1*&num/2-probit(0.95)* sqrt(&num1*&num*(&num1+&num+1)/12); c=floor(c); cc=m-c; call symput( med,left(put(median,6.2)));

6 call symput( clim1,left(put(c,3.))); call symput( clim2,left(put(cc,3.))); proc sort data=f out=g; by z; file print; set g; if _n_=&clim1 then do; m=&med/2; z=z/2; put / The estimated median of difference (test-reference) is: m; put / The lower limit of 90% confidence interval: z; if _n_=&clim2 then do; z=z/2; put The upper limit of 90% confidence interval: z; %mend tmax; The drawbacks of this application are the same as for every standardization: it cannot be applied for more complicated design and it isn t flexible to changes. If the new individual bioequivalence approach will be implemented (the draft version (6) of the FDA guideline is now available) this application will have to be extended. References [1] Hauschke D, Steinijans VW, Diletti E, Burke M: Sample size determination for bioequivalence assessment using a multiplicative model. Journal of Pharmacokinetics and Biopharmaceutics, 20: , [2] Peace KE: Discussion for interim analysis and sample size reestimation. Drug Information Journal, 27: , [3] Guidance. Statistical Procedures for Bioequivalence Studies Using a Standard Two-Treatment Crossover Design, Office of Generic Drugs, Division of Bioequivalence, 1992 [4] Lund RE: Tables for an approximate test for outliers in linear models. Technometrics, Vol. 17, pp , [5] Hauschke D, Steinijans VW, Diletti E: A distribution-free procedure for the statistical analysis of bioequivalence studies. International Journal of Clinical Pharmacology, Therapy and Toxicology, 28: 72-78, [6] In Vivo Bioequivalence Studies Based on Population and Individual Bioequivalence Approaches. Draft Guidance. U.S. Department of Health and Human Services. FDA. Center for Drug Evaluation and Research (CDER)

SCHOOL OF MATHEMATICS AND STATISTICS

SCHOOL OF MATHEMATICS AND STATISTICS Data provided: Tables of distributions MAS603 SCHOOL OF MATHEMATICS AND STATISTICS Further Clinical Trials Spring Semester 014 015 hours Candidates may bring to the examination a calculator which conforms

More information

6/7 Statistical Design and Analysis III. and Analysis II

6/7 Statistical Design and Analysis III. and Analysis II Statistical Design and Analysis II Helmut Schütz BEBAC Consultancy Services for Bioequivalence and Bioavailability Studies 1070 Vienna, Austria helmut.schuetz@bebac.at Bioequivalence and Bioavailability,

More information

Clinical Trials A Practical Guide to Design, Analysis, and Reporting

Clinical Trials A Practical Guide to Design, Analysis, and Reporting Clinical Trials A Practical Guide to Design, Analysis, and Reporting Duolao Wang, PhD Ameet Bakhai, MBBS, MRCP Statistician Cardiologist Clinical Trials A Practical Guide to Design, Analysis, and Reporting

More information

ADaM Tips for Exposure Summary

ADaM Tips for Exposure Summary ABSTRACT PharmaSUG China 2016 Paper 84 ADaM Tips for Exposure Summary Kriss Harris, SAS Specialists Limited, Hertfordshire, United Kingdom Have you ever created the Analysis Dataset for the Exposure Summary

More information

Add-On n and Sequential Designs

Add-On n and Sequential Designs Add-On and Sequential Designs Helmut Schütz BEBAC Wikimedia Commons 2007 Sujit Kumar Creative Commons Attribution-ShareAlike 3.0 Unported 1 26 Add-On Designs Were extensively discussed at the Bio-International

More information

Two-Stage Designs in BE Studies. Two-Stage Designs in BE Studies

Two-Stage Designs in BE Studies. Two-Stage Designs in BE Studies Wikimedia Commons 2007 Sokoljan Creative Commons Attribution-ShareAlike 3.0 Unported Two-Stage Designs in BE Studies Two-Stage Designs in BE Studies Helmut Schütz BEBAC 1 51 BE Study Designs yes long half

More information

PUBLIC ASSESSMENT REPORT Scientific Discussion

PUBLIC ASSESSMENT REPORT Scientific Discussion Direction de l Evaluation des Médicaments et des Produits Biologiques PUBLIC ASSESSMENT REPORT Scientific Discussion Tramadol hydrochloride + paracetamol 37.5 mg-325 mg Grünenthal film coated tablets Bonoc

More information

Evaluation of the Pharmacokinetic Profiles of the New Testosterone Topical Gel Formulation, Testim TM, Compared to AndroGel 1

Evaluation of the Pharmacokinetic Profiles of the New Testosterone Topical Gel Formulation, Testim TM, Compared to AndroGel 1 BIOPHARMACEUTICS & DRUG DISPOSITION Biopharm. Drug Dispos. 24: 115 120 (2003) Published online in Wiley InterScience (www.interscience.wiley.com). DOI: 10.1002/bdd.345 Evaluation of the Pharmacokinetic

More information

GSK Medicine: Study Number: Title: Rationale: Phase: Study Period: Study Design: Centres: Indication: Treatment:

GSK Medicine: Study Number: Title: Rationale: Phase: Study Period: Study Design: Centres: Indication: Treatment: The study listed may include approved and non-approved uses, formulations or treatment regimens. The results reported in any single study may not reflect the overall results obtained on studies of a product.

More information

Public Assessment Report Scientific discussion. Ivabradine Grindeks 5 mg and 7.5 mg and filmcoated. Ivabradine hydrochloride ES/H/0375/ /DC

Public Assessment Report Scientific discussion. Ivabradine Grindeks 5 mg and 7.5 mg and filmcoated. Ivabradine hydrochloride ES/H/0375/ /DC Public Assessment Report Scientific discussion Ivabradine Grindeks 5 mg and 7.5 mg and filmcoated tablets Ivabradine hydrochloride ES/H/0375/001-002/DC Registration number in Spain: 81.898, 81.899 This

More information

Practical Advice for Implementing Two-Stage Designs. Practical Advice for Implementing Two-Stage Designs

Practical Advice for Implementing Two-Stage Designs. Practical Advice for Implementing Two-Stage Designs Üdvözöljük! Practical Advice for Implementing Two-Stage Designs Helmut Schütz BEBAC Wikimedia Commons 2005 Dirk Beyer Creative Commons Attribution-ShareAlike 3.0 Unported 1 50 BE Study Designs yes long

More information

A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients

A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients Paper PH400 A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients Jennifer Ferrell, University of Louisville,

More information

Final Report (Amendment 1) April 11, 2006 Page 4 of 50

Final Report (Amendment 1) April 11, 2006 Page 4 of 50 Page 4 of 50 2 SYNOPSIS Title: A Bioavailability Study to Assess the Bioequivalence of Alfacalcidol Capsule and Oral Drop Formulations: A Comparative, Randomized, Single-Dose, 4-Way Crossover Bioavailability

More information

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice.

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice. Hungry Mice When laboratory mice (and maybe other animals) are fed a nutritionally adequate but near-starvation diet, they may live longer on average than mice that eat a normal amount of food. In this

More information

These results are supplied for informational purposes only.

These results are supplied for informational purposes only. These results are supplied for informational purposes only. Prescribing decisions should be made based on the approved package insert in the country of prescription Sponsor/company: sanofi-aventis ClinialTrials.gov

More information

Multiple Treatments on the Same Experimental Unit. Lukas Meier (most material based on lecture notes and slides from H.R. Roth)

Multiple Treatments on the Same Experimental Unit. Lukas Meier (most material based on lecture notes and slides from H.R. Roth) Multiple Treatments on the Same Experimental Unit Lukas Meier (most material based on lecture notes and slides from H.R. Roth) Introduction We learned that blocking is a very helpful technique to reduce

More information

CONVENTIONAL AND UNCONVENTIONAL GRAPHS IN SAS. Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary

CONVENTIONAL AND UNCONVENTIONAL GRAPHS IN SAS. Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary CONVENTIONAL AND UNCONVENTIONAL GRAPHS IN SAS Singer Júlia Chinoin Pharmaceutical and Chemical Works Ltd, Hungary 1. Introduction The graphical analysis of data is a necessary complement of inferential

More information

PROFILE SIMILARITY IN BIOEQUIVALENCE TRIALS

PROFILE SIMILARITY IN BIOEQUIVALENCE TRIALS Sankhyā : The Indian Journal of Statistics Special Issue on Biostatistics 2000, Volume 62, Series B, Pt. 1, pp. 149 161 PROFILE SIMILARITY IN BIOEQUIVALENCE TRIALS By DAVID T. MAUGER and VERNON M. CHINCHILLI

More information

SOME STATISTICAL CONSIDERATIONS IN THE DESIGN AND ANALYSIS OF EQUIVALENCE STUDIES USING PHARMACODYNAMIC AND CLINICAL ENDPOINTS

SOME STATISTICAL CONSIDERATIONS IN THE DESIGN AND ANALYSIS OF EQUIVALENCE STUDIES USING PHARMACODYNAMIC AND CLINICAL ENDPOINTS SOME STATISTICAL CONSIDERATIONS IN THE DESIGN AND ANALYSIS OF EQUIVALENCE STUDIES USING PHARMACODYNAMIC AND CLINICAL ENDPOINTS Scott Haughie, M.Sc., Senior Director, Biostatistics IPAC-RS/UF Orlando Inhalation

More information

Study Centers: This study was conducted in 2 centers in Italy.

Study Centers: This study was conducted in 2 centers in Italy. Title of Trial: A randomised, double-blind, placebo-controlled, two-period, two-sequence-crossover interaction study to assess the effect of safinamide on levodopa pharmacokinetics in subjects with Parkinson

More information

Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela Nicolau, Ph.D. Innapharma Inc., Suffern, New York

Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela Nicolau, Ph.D. Innapharma Inc., Suffern, New York SAS APPLICATION FOR PHARMACOKINETIC EVALUATION AND ANALYSIS OF THE EFFECT OF TREATMENT WITH A NEW ANTIDEPRESSANT DRUG IN A POPULATION WITH MAJOR DEPRESSION Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela

More information

Oral Soluble Film Products for Epilepsy: Clobazam (COSF) and Diazepam (DBSF)

Oral Soluble Film Products for Epilepsy: Clobazam (COSF) and Diazepam (DBSF) Oral Soluble Film Products for Epilepsy: Clobazam (COSF) and Diazepam (DBSF) Michael A. Rogawski, M.D., Ph.D. Professor of Neurology and Pharmacology School of Medicine University of California, Davis

More information

THE META-ANALYSIS (PROC MIXED) OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT

THE META-ANALYSIS (PROC MIXED) OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT Paper PO03 THE META-ANALYSIS PROC MIXED OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ INTROUCTION The paper explores the use of a meta-analysis

More information

Understandable Statistics

Understandable Statistics Understandable Statistics correlated to the Advanced Placement Program Course Description for Statistics Prepared for Alabama CC2 6/2003 2003 Understandable Statistics 2003 correlated to the Advanced Placement

More information

FREEDOM OF INFORMATION SUMMARY

FREEDOM OF INFORMATION SUMMARY Date of Approval: June 18, 2004 FREEDOM OF INFORMATION SUMMARY Original Abbreviated New Animal Drug Application Ivermectin Chewable Tablets (ivermectin) Antilarval For use in dogs to prevent canine heartworm

More information

Helmut Schütz. Satellite Short Course Budapest, 5 October

Helmut Schütz. Satellite Short Course Budapest, 5 October Multi-Group and Multi-Site Studies. To pool or not to pool? Helmut Schütz Satellite Short Course Budapest, 5 October 2017 1 Group Effect Sometimes subjects are split into two or more groups Reasons Lacking

More information

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA STAT 350 (Spring 2015) Lab 7: SAS Solution 1 Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA A. (50 pts.) Do isoflavones increase bone mineral density? (ex12-45bmd.txt) Kudzu

More information

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business Applied Medical Statistics Using SAS Geoff Der Brian S. Everitt CRC Press Taylor Si Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business A

More information

Unit 1 Exploring and Understanding Data

Unit 1 Exploring and Understanding Data Unit 1 Exploring and Understanding Data Area Principle Bar Chart Boxplot Conditional Distribution Dotplot Empirical Rule Five Number Summary Frequency Distribution Frequency Polygon Histogram Interquartile

More information

Linear Regression in SAS

Linear Regression in SAS 1 Suppose we wish to examine factors that predict patient s hemoglobin levels. Simulated data for six patients is used throughout this tutorial. data hgb_data; input id age race $ bmi hgb; cards; 21 25

More information

Clinical Study Synopsis for Public Disclosure

Clinical Study Synopsis for Public Disclosure abcd Clinical Study for Public Disclosure This clinical study synopsis is provided in line with s Policy on Transparency and Publication of Clinical Study Data. The synopsis - which is part of the clinical

More information

Pharmacokinetic and Statistical Analysis of BE Data

Pharmacokinetic and Statistical Analysis of BE Data Wikimedia Commons 2009 Berthold Werner Creative Commons Attribution-ShareAlike 3.0 Unported Pharmacokinetic and Statistical Analysis of BE Data Pharmacokinetic and Statistical Analysis of BE Data Helmut

More information

Public Assessment Report Scientific discussion. Mycophenolic Acid Accord Healthcare 180 mg and 360 mg gastro-resistant tablets. Mycophenolate sodium

Public Assessment Report Scientific discussion. Mycophenolic Acid Accord Healthcare 180 mg and 360 mg gastro-resistant tablets. Mycophenolate sodium Public Assessment Report Scientific discussion Mycophenolic Acid Accord Healthcare 180 mg and 360 mg gastro-resistant tablets Mycophenolate sodium ES/H/0275/001-002/DC Applicant: Accord Healthcare Limited

More information

Dr. M.Mothilal Assistant professor

Dr. M.Mothilal Assistant professor Dr. M.Mothilal Assistant professor Bioavailability is a measurement of the rate and extent of drug that reaches the systemic circulation from a drug product or a dosage form. There are two different types

More information

Ph D. Synopsis 4. WORK PLAN AND METHODOLOGY

Ph D. Synopsis 4. WORK PLAN AND METHODOLOGY 4. WORK PLAN AND METHODOLOGY WORK PLAN FOR BIOEQUIVALENCE STUDY OF TOPIRAMATE 1. Literature Review 2. Fasting Bioequivalence Study Clinical Phase Preparation of Clinical study Protocol Recruitment of Volunteers

More information

Effect of Source and Level of Protein on Weight Gain of Rats

Effect of Source and Level of Protein on Weight Gain of Rats Effect of Source and Level of Protein on of Rats 1 * two factor analysis of variance with interaction; 2 option ls=120 ps=75 nocenter nodate; 3 4 title Effect of Source of Protein and Level of Protein

More information

Professor Rose-Helleknat's PCR Data for Breast Cancer Study

Professor Rose-Helleknat's PCR Data for Breast Cancer Study Professor Rose-Helleknat's PCR Data for Breast Cancer Study Summary statistics for Crossing Point, cp = - log 2 (RNA) Obs Treatment Outcome n Mean Variance St_Deviation St_Error 1 Placebo Cancer 7 21.4686

More information

Motivation: Fraud Detection

Motivation: Fraud Detection Outlier Detection Motivation: Fraud Detection http://i.imgur.com/ckkoaop.gif Jian Pei: CMPT 741/459 Data Mining -- Outlier Detection (1) 2 Techniques: Fraud Detection Features Dissimilarity Groups and

More information

Public Assessment Report. Scientific discussion. Carvedilol Aurobindo 6.25 mg and 25 mg, film-coated tablets (carvedilol) NL/H/2609/ /MR

Public Assessment Report. Scientific discussion. Carvedilol Aurobindo 6.25 mg and 25 mg, film-coated tablets (carvedilol) NL/H/2609/ /MR Public Assessment Report Scientific discussion Carvedilol Aurobindo 6.25 mg and 25 mg, film-coated tablets (carvedilol) NL/H/2609/001-002/MR Date: 26 May 2014 This module reflects the scientific discussion

More information

Clinical Study Synopsis

Clinical Study Synopsis Clinical Study Synopsis This Clinical Study Synopsis is provided for patients and healthcare professionals to increase the transparency of Bayer's clinical research. This document is not intended to replace

More information

Comparative bioavailability study of two salbutamol tablets in healthy adult volunteers

Comparative bioavailability study of two salbutamol tablets in healthy adult volunteers International Journal of Clinical Pharmacology and Therapeutics, Vol. 47 No. 6/2009 (413-418) Comparative bioavailability study of two salbutamol tablets in healthy adult volunteers Z. Chik 1, R.C. Basu

More information

Public Assessment Report. Scientific discussion. Desloratadine Lek 5 mg film-coated tablets. (Desloratadine) DK/H/2041/001/DC.

Public Assessment Report. Scientific discussion. Desloratadine Lek 5 mg film-coated tablets. (Desloratadine) DK/H/2041/001/DC. Public Assessment Report Scientific discussion Desloratadine Lek 5 mg film-coated tablets (Desloratadine) DK/H/2041/001/DC 29 February 2016 This module reflects the scientific discussion for the approval

More information

Noncompartmental Analysis (NCA) in PK, PK-based Design

Noncompartmental Analysis (NCA) in PK, PK-based Design Noncompartmental Analysis (NCA) in PK, PK-based Design Helmut Schütz BEBAC Bioequivalence and Bioavailability, Pre-Conference Workshop Ljubljana, 17 May 21 1 54 Bioequivalence History Surrogate of clinical

More information

Public Assessment Report Scientific discussion. Rosuvastatin/Amlodipine 10 mg/5 mg, 10 mg/10 mg, 20 mg/5 mg and 20 mg/10 mg film-coated tablets

Public Assessment Report Scientific discussion. Rosuvastatin/Amlodipine 10 mg/5 mg, 10 mg/10 mg, 20 mg/5 mg and 20 mg/10 mg film-coated tablets Public Assessment Report Scientific discussion Rosuvastatin/Amlodipine 10 mg/5 mg, 10 mg/10 mg, 20 mg/5 mg and 20 mg/10 mg film-coated tablets (Rosuvastatin calcium and Amlodipine besilate) ES/H/0320/001-004/DC

More information

Bioequivalence Studies of Two Formulations of Famciclovir Tablets by HPLC Method

Bioequivalence Studies of Two Formulations of Famciclovir Tablets by HPLC Method Asian Journal of Chemistry Vol. 19, No. 6 (2007), 4245-4250 Bioequivalence Studies of Two Formulations of Famciclovir Tablets by HPLC Method K.V. SUBRAHMANYAM*, P. MOHANRAJ, P. SANDHYARANI, V.S. SARAVANAN

More information

Saliva Versus Plasma Bioequivalence of Rusovastatin in Humans: Validation of Class III Drugs of the Salivary Excretion Classification System

Saliva Versus Plasma Bioequivalence of Rusovastatin in Humans: Validation of Class III Drugs of the Salivary Excretion Classification System Drugs R D (2015) 15:79 83 DOI 10.1007/s40268-015-0080-1 ORIGINAL RESEARCH ARTICLE Saliva Versus Plasma Bioequivalence of Rusovastatin in Humans: Validation of Class III Drugs of the Salivary Excretion

More information

Modified Release: C min C τ. Modified Release

Modified Release: C min C τ. Modified Release Wikimedia Commons 2007 Sokoljan Creative Commons Attribution-ShareAlike 3.0 Unported Modified Release: C min C τ Modified Release C C min C τ Helmut Schütz BEBAC 1 24 Another Reminder Rose is a rose is

More information

Establishing the Biostudy Statistical Design

Establishing the Biostudy Statistical Design Establishing the Biostudy Statistical Design Helmut Schütz Wikimedia Commons 2008 Thomas Wolf CCA-ShareAlike 3.0 Unported Bioequivalence, Dissolution & IVIVC Berlin, 14 16 November 2016 [Session 4, part

More information

Scientific And Regulatory Background For The Revised Bioequivalence Requirements For NTI, Steep Exposure-Response, And Drugs With Complex PK Profiles

Scientific And Regulatory Background For The Revised Bioequivalence Requirements For NTI, Steep Exposure-Response, And Drugs With Complex PK Profiles Scientific And Regulatory Background For The Revised Bioequivalence Requirements For NTI, Steep Exposure-Response, And Drugs With Complex PK Profiles Liang Zhao, Ph.D. Director, Division of Quantitative

More information

Graph Display of Patient Profile Using SAS

Graph Display of Patient Profile Using SAS PharmaSUG 2018 - Paper DV-17 Graph Display of Patient Profile Using SAS Yanwei Han, Seqirus USA Inc., Cambridge, MA Hongyu Liu, Seqirus USA Inc., Cambridge, MA ABSTRACT We usually create patient profile

More information

1.4 - Linear Regression and MS Excel

1.4 - Linear Regression and MS Excel 1.4 - Linear Regression and MS Excel Regression is an analytic technique for determining the relationship between a dependent variable and an independent variable. When the two variables have a linear

More information

BASIC PHARMACOKINETICS

BASIC PHARMACOKINETICS BASIC PHARMACOKINETICS MOHSEN A. HEDAYA CRC Press Taylor & Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Group, an informa business Table of Contents Chapter

More information

EXECUTIVE SUMMARY DATA AND PROBLEM

EXECUTIVE SUMMARY DATA AND PROBLEM EXECUTIVE SUMMARY Every morning, almost half of Americans start the day with a bowl of cereal, but choosing the right healthy breakfast is not always easy. Consumer Reports is therefore calculated by an

More information

Noncompartmental Analysis (NCA) in PK, PK-based Design

Noncompartmental Analysis (NCA) in PK, PK-based Design Noncompartmental Analysis (NCA) in PK, PK-based Design Helmut Schütz BEBAC Consultancy Services for Bioequivalence and Bioavailability Studies 17 Vienna, Austria helmut.schuetz@bebac.at Bioequivalence

More information

Adaptive Treatment Arm Selection in Multivariate Bioequivalence Trials

Adaptive Treatment Arm Selection in Multivariate Bioequivalence Trials Adaptive Treatment Arm Selection in Multivariate Bioequivalence Trials June 25th 215 Tobias Mielke ICON Innovation Center Acknowledgments / References Presented theory based on methodological work regarding

More information

Multivariate Bioequivalence

Multivariate Bioequivalence Multivariate Bioequivalence S h i t a l A g a w a n e, S a n j u k t a R o y P h U S E 2013 S t r e a m : S t a t i s t i c s a n d P h a r m a c o k i n e t i c s S P 0 4 PhUSE 2013 Disclaimer Any views

More information

The use of Saliva instead of Plasma as a Surrogate in Drug Bioavailability and Bioequivalence Studies in Humans

The use of Saliva instead of Plasma as a Surrogate in Drug Bioavailability and Bioequivalence Studies in Humans The use of Saliva instead of Plasma as a Surrogate in Drug Bioavailability and Bioequivalence Studies in Humans ا.د. ناصر محمد ياسر نمرادكيدك Prof. Nasir M. Idkaidek University of Petra Amman - Jordan

More information

Public Assessment Report. Scientific discussion. Aktiprol 50 mg, 100 mg, 200 mg and 400 mg tablets. (Amisulpride) DK/H/2386/ /DC

Public Assessment Report. Scientific discussion. Aktiprol 50 mg, 100 mg, 200 mg and 400 mg tablets. (Amisulpride) DK/H/2386/ /DC Public Assessment Report Scientific discussion Aktiprol 50 mg, 100 mg, 200 mg and 400 mg tablets (Amisulpride) DK/H/2386/001-004/DC 21 January 2016 This module reflects the scientific discussion for the

More information

Pharmacokinetic and absolute bioavailability studies in early clinical development using microdose and microtracer approaches.

Pharmacokinetic and absolute bioavailability studies in early clinical development using microdose and microtracer approaches. Pharmacokinetic and absolute bioavailability studies in early clinical development using microdose and microtracer approaches. Lloyd Stevens PhD Senior Research Fellow Pharmaceutical Profiles Nottingham,

More information

The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data

The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ ABSTRACT This paper presents an example of the fast cluster analysis (SAS/STAT,

More information

Basic Pharmacokinetics and Pharmacodynamics: An Integrated Textbook with Computer Simulations

Basic Pharmacokinetics and Pharmacodynamics: An Integrated Textbook with Computer Simulations Basic Pharmacokinetics and Pharmacodynamics: An Integrated Textbook with Computer Simulations Rosenbaum, Sara E. ISBN-13: 9780470569061 Table of Contents 1 Introduction to Pharmacokinetics and Pharmacodynamics.

More information

Public Assessment Report. Scientific discussion. Tevalukast Chewable tablets 4 mg and 5 mg. Montelukast sodium DK/H/1331/ /DC

Public Assessment Report. Scientific discussion. Tevalukast Chewable tablets 4 mg and 5 mg. Montelukast sodium DK/H/1331/ /DC Public Assessment Report Scientific discussion Tevalukast Chewable tablets 4 mg and 5 mg Montelukast sodium DK/H/1331/001-002/DC This module reflects the scientific discussion for the approval of Tevalukast.

More information

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes Content Quantifying association between continuous variables. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Volkert Siersma siersma@sund.ku.dk The Research Unit for General

More information

Prequalification Team Medicines (PQTm) Bioequivalence Assessment Update. Dr. John Gordon

Prequalification Team Medicines (PQTm) Bioequivalence Assessment Update. Dr. John Gordon Prequalification Team Medicines (PQTm) Bioequivalence Assessment Update Dr. John Gordon 1 Overview Bioequivalence (BE) guideline updates Notes on bioequivalence study design Product specific guidance Comparator

More information

Public Assessment Report Scientific discussion. Anastrozole Bluefish 1 mg film-coated tablets (anastrozole) SE/H/781/01/DC

Public Assessment Report Scientific discussion. Anastrozole Bluefish 1 mg film-coated tablets (anastrozole) SE/H/781/01/DC Public Assessment Report Scientific discussion Anastrozole Bluefish 1 mg film-coated tablets (anastrozole) SE/H/781/01/DC This module reflects the scientific discussion for the approval of Anastrozole

More information

LAB ASSIGNMENT 4 INFERENCES FOR NUMERICAL DATA. Comparison of Cancer Survival*

LAB ASSIGNMENT 4 INFERENCES FOR NUMERICAL DATA. Comparison of Cancer Survival* LAB ASSIGNMENT 4 1 INFERENCES FOR NUMERICAL DATA In this lab assignment, you will analyze the data from a study to compare survival times of patients of both genders with different primary cancers. First,

More information

How to measure what happens in pharmacokinetics

How to measure what happens in pharmacokinetics Arbeitsgemeinschaft für angewandte Humanpharmakologie e.v. How to measure what happens in pharmacokinetics PK metrics of relevance! Helmut Schütz 1 Terminology Estimates obtained by a PK model: PK parameters

More information

Data Analysis with SPSS

Data Analysis with SPSS Data Analysis with SPSS A First Course in Applied Statistics Fourth Edition Stephen Sweet Ithaca College Karen Grace-Martin The Analysis Factor Allyn & Bacon Boston Columbus Indianapolis New York San Francisco

More information

CHMP ASSESSMENT REPORT FOR. Raloxifene Teva. International Nonproprietary Name: raloxifene Procedure No. EMEA/H/C/001075

CHMP ASSESSMENT REPORT FOR. Raloxifene Teva. International Nonproprietary Name: raloxifene Procedure No. EMEA/H/C/001075 European Medicines Agency Evaluation of Medicines for Human Use Doc Ref:EMA/231873/2010 London 29 April 2010 CHMP ASSESSMENT REPORT FOR Raloxifene Teva International Nonproprietary Name: raloxifene Procedure

More information

Clinical Study Synopsis for Public Disclosure

Clinical Study Synopsis for Public Disclosure abcd Clinical Study for Public Disclosure This clinical study synopsis is provided in line with s Policy on Transparency and Publication of Clinical Study Data. The synopsis - which is part of the clinical

More information

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys Multiple Regression Analysis 1 CRITERIA FOR USE Multiple regression analysis is used to test the effects of n independent (predictor) variables on a single dependent (criterion) variable. Regression tests

More information

PQRI Workshop Present Experience and Challenges with the Use of Pharmacodynamics Evaluation of BE of Glucocorticoids Industry Perspective

PQRI Workshop Present Experience and Challenges with the Use of Pharmacodynamics Evaluation of BE of Glucocorticoids Industry Perspective PQRI Workshop Present Experience and Challenges with the Use of Pharmacodynamics Evaluation of BE of Glucocorticoids Industry Perspective Charles Bon and Lindsey Katz Vasoconstrictor assay by McKenzie

More information

Public Assessment Report. Scientific discussion. Acetylsalicylzuur Disphar 500 mg and 1000 mg, oral powder. (acetylsalicylic acid)

Public Assessment Report. Scientific discussion. Acetylsalicylzuur Disphar 500 mg and 1000 mg, oral powder. (acetylsalicylic acid) Public Assessment Report Scientific discussion Acetylsalicylzuur Disphar 500 mg and 1000 mg, oral powder (acetylsalicylic acid) NL/H/3464/001-002/DC Date: 21 June 2017 This module reflects the scientific

More information

Performance of Median and Least Squares Regression for Slightly Skewed Data

Performance of Median and Least Squares Regression for Slightly Skewed Data World Academy of Science, Engineering and Technology 9 Performance of Median and Least Squares Regression for Slightly Skewed Data Carolina Bancayrin - Baguio Abstract This paper presents the concept of

More information

Prequalification Programme Bioequivalence Assessment Update. Dr. John Gordon

Prequalification Programme Bioequivalence Assessment Update. Dr. John Gordon Prequalification Programme Bioequivalence Assessment Update Dr. John Gordon WHO Prequalification of Medicines Programme 3 rd Meeting with Manufacturers of FPPs and APIs Overview Review of commonly used

More information

Sample Size Reestimation in Non-Inferiority Trials. Heidelberg, Germany

Sample Size Reestimation in Non-Inferiority Trials. Heidelberg, Germany Sample Size Reestimation in Non-Inferiority Trials Tim Friede 1 and Meinhard Kieser 2 1 Warwick Medical School, The University of Warwick, UK 2 Institute of Medical Biometry and Informatics, University

More information

Statistical Tests of Agreement Based on Non-Standard Data

Statistical Tests of Agreement Based on Non-Standard Data Statistical Tests of Agreement Based on Non-Standard Data Elizabeth Stanwyck Bimal Sinha Department of Mathematics and Statistics University of Maryland, Baltimore County Barry Nussbaum Office of Environmental

More information

Clinical Study Synopsis for Public Disclosure

Clinical Study Synopsis for Public Disclosure abcd Clinical Study Synopsis for Public Disclosure This clinical study synopsis is provided in line with s Policy on Transparency and Publication of Clinical Study Data. The synopsis - which is part of

More information

SYNOPSIS. Number of subjects: Planned: 22 Randomized: 23 Treated: 23. Evaluated: Pharmacodynamic: 22 Safety: 23 Pharmacokinetics: 22

SYNOPSIS. Number of subjects: Planned: 22 Randomized: 23 Treated: 23. Evaluated: Pharmacodynamic: 22 Safety: 23 Pharmacokinetics: 22 SYNOPSIS Title of the study: A randomized, cross-over, open, euglycemic clamp study on the relative bioavailability and activity of 0.6 U/kg insulin glargine and 20 µg lixisenatide, given as on-site mix

More information

Public Assessment Report. Scientific discussion. Metoprololsuccinat Actavis. Prolonged release tablets 25 mg, 50 mg, 100 mg and 200 mg

Public Assessment Report. Scientific discussion. Metoprololsuccinat Actavis. Prolonged release tablets 25 mg, 50 mg, 100 mg and 200 mg Public Assessment Report Scientific discussion Metoprololsuccinat Actavis Prolonged release tablets 25 mg, 50 mg, 100 mg and 200 mg Metoprolol succinate This module reflects the scientific discussion for

More information

The study listed may include approved and non-approved uses, formulations or treatment regimens. The results reported in any single study may not

The study listed may include approved and non-approved uses, formulations or treatment regimens. The results reported in any single study may not The study listed may include approved and non-approved uses, formulations or treatment regimens. The results reported in any single study may not reflect the overall results obtained on studies of a product.

More information

NOTE FOR GUIDANCE ON TOXICOKINETICS: THE ASSESSMENT OF SYSTEMIC EXPOSURE IN TOXICITY STUDIES S3A

NOTE FOR GUIDANCE ON TOXICOKINETICS: THE ASSESSMENT OF SYSTEMIC EXPOSURE IN TOXICITY STUDIES S3A INTERNATIONAL CONFERENCE ON HARMONISATION OF TECHNICAL REQUIREMENTS FOR REGISTRATION OF PHARMACEUTICALS FOR HUMAN USE ICH HARMONISED TRIPARTITE GUIDELINE NOTE FOR GUIDANCE ON TOXICOKINETICS: THE ASSESSMENT

More information

Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ

Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ THE RESULTS OF CLUSTER ANALYSIS OF CLINICAL DATA USING THE FASTCLUS PROCEDURE Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ ABSTRACT The objective

More information

Implementing Worst Rank Imputation Using SAS

Implementing Worst Rank Imputation Using SAS Paper SP12 Implementing Worst Rank Imputation Using SAS Qian Wang, Merck Sharp & Dohme (Europe), Inc., Brussels, Belgium Eric Qi, Merck & Company, Inc., Upper Gwynedd, PA ABSTRACT Classic designs of randomized

More information

PharmaSUG Paper QT38

PharmaSUG Paper QT38 PharmaSUG 2015 - Paper QT38 Statistical Review and Validation of Patient Narratives Indrani Sarkar, inventiv Health Clinical, Indiana, USA Bradford J. Danner, Sarah Cannon Research Institute, Tennessee,

More information

Public Assessment Report. Scientific discussion. Ropinirol Actavis. Ropinirole hydrochloride DK/H/1212/ /DC

Public Assessment Report. Scientific discussion. Ropinirol Actavis. Ropinirole hydrochloride DK/H/1212/ /DC Public Assessment Report Scientific discussion Ropinirol Actavis Ropinirole hydrochloride DK/H/1212/001-007/DC This module reflects the scientific discussion for the approval of Ropinirole film-coated

More information

Bioequivalence of Two Oral Formulations of Gatifloxacin Tablets in Healthy Male Volunteers

Bioequivalence of Two Oral Formulations of Gatifloxacin Tablets in Healthy Male Volunteers Bioequivalence of Two Oral Formulations of Gatifloxacin Tablets in Healthy Male Volunteers Marilyn Lockyer Saleh Al-Dgither Eman Al-Gaai Ahmed Yousuf Muhammad M Hammami, MD, PhD Center for Clinical Research,

More information

The science behind generic drugs

The science behind generic drugs The science behind generic drugs Are generics manufactured to the same high quality standards? Are generics equivalent to the pioneer? Do pioneer drugs go through more testing? Should I feel confident

More information

Public Assessment Report Scientific discussion. Ibuprofen 400 mg/100 ml solution for infusion & Ibuprofen 600 mg/100 ml solution for infusion

Public Assessment Report Scientific discussion. Ibuprofen 400 mg/100 ml solution for infusion & Ibuprofen 600 mg/100 ml solution for infusion Public Assessment Report Scientific discussion Ibuprofen 400 mg/100 ml solution for infusion & Ibuprofen 600 mg/100 ml solution for infusion Ibuprofen arginine ES/H/0390/001/DC ES/H/0392/001/DC Applicant:

More information

Ronald Goldwater 1 Azra Hussaini

Ronald Goldwater 1 Azra Hussaini Clin Pharmacokinet (217) 56:83 813 DOI 1.17/s4262-17-536-2 ORIGINAL RESEARCH ARTICLE Comparison of a Novel Formulation of Abiraterone Acetate vs. the Originator Formulation in Healthy Male Subjects: Two

More information

Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority. SOSUG, April 17, 2014

Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority. SOSUG, April 17, 2014 Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority SOSUG, April 17, 2014 The conditional probability of being assigned to a particular treatment given a vector of observed

More information

isc ove ring i Statistics sing SPSS

isc ove ring i Statistics sing SPSS isc ove ring i Statistics sing SPSS S E C O N D! E D I T I O N (and sex, drugs and rock V roll) A N D Y F I E L D Publications London o Thousand Oaks New Delhi CONTENTS Preface How To Use This Book Acknowledgements

More information

A Handbook of Statistical Analyses using SAS

A Handbook of Statistical Analyses using SAS A Handbook of Statistical Analyses using SAS SECOND EDITION Geoff Der Statistician MRC Social and Public Health Sciences Unit University of Glasgow Glasgow, Scotland and Brian S. Everitt Professor of Statistics

More information

Public Assessment Report. Scientific discussion. Lorazepam GenRx 1 mg and 2.5 mg tablets. (lorazepam) NL/H/3485/ /DC

Public Assessment Report. Scientific discussion. Lorazepam GenRx 1 mg and 2.5 mg tablets. (lorazepam) NL/H/3485/ /DC Public Assessment Report Scientific discussion Lorazepam GenRx 1 mg and 2.5 mg tablets (lorazepam) NL/H/3485/001-002/DC Date: 13 March 2015 This module reflects the scientific discussion for the approval

More information

Decentralised Procedure. Public Assessment Report. Lorazepam-neuraxpharm 1/ 2,5 mg Schmelztabletten. Lorazepam DE/H/4558/ /DC

Decentralised Procedure. Public Assessment Report. Lorazepam-neuraxpharm 1/ 2,5 mg Schmelztabletten. Lorazepam DE/H/4558/ /DC Decentralised Procedure Public Assessment Report Lorazepam-neuraxpharm 1/ 2,5 mg Schmelztabletten Lorazepam DE/H/4558/001-002/DC Applicant: neuraxpharm Arzneimittel GmbH, Germany Reference Member State

More information

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012 STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION by XIN SUN PhD, Kansas State University, 2012 A THESIS Submitted in partial fulfillment of the requirements

More information

Disclaimer. Statistical Aspects of Revision of CHMP Bioequivalence Guidelines. David Brown MHRA

Disclaimer. Statistical Aspects of Revision of CHMP Bioequivalence Guidelines. David Brown MHRA Statistical Aspects of Revision of CHMP Bioequivalence Guidelines David Brown MHRA 1 Disclaimer The views and opinions expressed in the following PowerPoint slides are those of the individual presenter

More information

Public Assessment Report. Scientific discussion. Tevalukast Film-coated tablets 10 mg. Montelukast sodium DK/H/1332/001/DC

Public Assessment Report. Scientific discussion. Tevalukast Film-coated tablets 10 mg. Montelukast sodium DK/H/1332/001/DC Public Assessment Report Scientific discussion Tevalukast Film-coated tablets 10 mg Montelukast sodium DK/H/1332/001/DC This module reflects the scientific discussion for the approval of Tevalukast. The

More information

Study No: Title : Rationale: Phase: Study Period: Study Design: Centres: Indication: Treatment: Objectives: Statistical Methods:

Study No: Title : Rationale: Phase: Study Period: Study Design: Centres: Indication: Treatment: Objectives: Statistical Methods: Study No: MNK111587 Title : A healthy volunteer repeat dose study to evaluate; the safety, tolerability, pharmacokinetics, effects on the pharmacokinetics of midazolam and the neurokinin-1 (NK1) receptor

More information

Research Methods in Forest Sciences: Learning Diary. Yoko Lu December Research process

Research Methods in Forest Sciences: Learning Diary. Yoko Lu December Research process Research Methods in Forest Sciences: Learning Diary Yoko Lu 285122 9 December 2016 1. Research process It is important to pursue and apply knowledge and understand the world under both natural and social

More information