martin ★★ Austria, 2018-06-08 11:15 (2378 d 04:28 ago) Posting: # 18867 Views: 4,241 |
|
Dear all, I am facing an interesting BE study and would be happy to get the forum members thoughts on the analysis strategy Background: one reference (R) and two test items (T1, T2) with different doses per body weight stratum Body weight stratum 1: x mg for T1, T2 and R for subjects < z kg Body weight stratum 2: y mg for T1, T2 and R for subjects > z kg Study design: Williams’ design (3-treatment, 3-period, 6-sequence) with stratified randomization according to body weight stratum (<z kg and > z kg) to ensure balance regarding this strata. Questions: 1) Can the BE assessment be based on all data combined or does this require a separate analysis per body weight stratum 2) If a combined assessment is the way to go how should the model look like a) Ignoring body weight strata and use classical model (FDA): fixed effects for period, sequence, treatment and random effect for subject nested in sequence. b) Including body weight strata as mentioned in ICH E9 (i.e. factors on which randomization has been stratified should be accounted for later in the analysis): fixed effects for period, sequence, treatment, body weight strata and random effect for subject nested in sequence. Best regards and looking forward to an interesting discussion Martin Edit: Category changed; see also this post #1. [Helmut] |
Helmut ★★★ Vienna, Austria, 2018-06-08 13:04 (2378 d 02:39 ago) @ martin Posting: # 18868 Views: 3,602 |
|
Hi Martin, ❝ Body weight stratum 1: x mg for T1, T2 and R for subjects < z kg ❝ Body weight stratum 2: y mg for T1, T2 and R for subjects > z kg ❝ Study design: Williams’ design (3-treatment, 3-period, 6-sequence) with stratified randomization according to body weight stratum (<z kg and > z kg) to ensure balance regarding this strata. Modifying this code:
❝ 1) Can the BE assessment be based on all data combined or does this require a separate analysis per body weight stratum Strictly speaking BE is a comparison of at the same molar dose. Hence, separate? ❝ 2) If a combined assessment is the way to go how should the model look like ❝ a) Ignoring body weight strata and use classical model (FDA): fixed effects for period, sequence, treatment and random effect for subject nested in sequence. ❝ b) Including body weight strata as mentioned in ICH E9 (i.e. factors on which randomization has been stratified should be accounted for later in the analysis): fixed effects for period, sequence, treatment, body weight strata and random effect for subject nested in sequence. If you go with a) what is the purpose of the stratification? In b) the stratum is a between-group term anyhow and I guess that the residual error will be the same as in a). — Dif-tor heh smusma 🖖🏼 Довге життя Україна! Helmut Schütz The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
d_labes ★★★ Berlin, Germany, 2018-06-08 19:04 (2377 d 20:39 ago) @ martin Posting: # 18875 Views: 3,621 |
|
Dear Martin, ❝ ... ❝ Questions: ❝ ❝ 1) Can the BE assessment be based on all data combined or does this require a separate analysis per body weight stratum ❝ ❝ 2) If a combined assessment is the way to go how should the model look like ❝ ❝ a) Ignoring body weight strata and use classical model (FDA): fixed effects for period, sequence, treatment and random effect for subject nested in sequence. ❝ ❝ b) Including body weight strata as mentioned in ICH E9 (i.e. factors on which randomization has been stratified should be accounted for later in the analysis): fixed effects for period, sequence, treatment, body weight strata and random effect for subject nested in sequence. Additionally to what Helmut wrote: If you will use a Proc GLM or lm() for the combined assessment you will face a confounding between subject effects and body-weight-strata effects and the analysis code will show you the finger. Something like df=0 will happen, at least for type III tests of effects.You have to include at least a treatment by body-weight-strata interaction to get meaningfull results. I'm not really sure if this confounding is also an issue if you plan to use Proc MIXED or lme()/lmer() . Make a example data set and try it.I suggest that you modify the FDA code for logistic groups (see f.i. this post) accordingly (change group to body-weight-strata and drop Period(nested within Group)). And read Helmut's lectures about "Multi-Group Studies in BE. To pool or not to pool?". All the criticism regarding the group effects apply also to body-weight-strata effects. The treatment effect (diff in the log domain, ratio on the original scale) in x-over studies is determined intra-subject. Thus all subject characteristics constant over the study can not influence it really. If you are interested in having a look at BE assesment (ratio & CI) for the different body-weight-strata you have to go with 1) anyway. BTW: "factors on which randomization has been stratified should be accounted for" should read the other way round: randomize stratified for factors planned to account for in the analysis. — Regards, Detlew |
zizou ★ Plzeň, Czech Republic, 2018-06-08 23:11 (2377 d 16:31 ago) (edited on 2018-06-09 03:21) @ martin Posting: # 18876 Views: 3,526 |
|
Dear Martin, additionally to what Helmut and Detlew wrote: ❝ 1) Can the BE assessment be based on all data combined or does this require a separate analysis per body weight stratum - for subjects with weight <z kg, - for subjects with weight >z kg. Pro: standard evaluation (2x) Con: approx. double number of subjects required (than in option 2)) ❝ 2) If a combined assessment is the way to go how should the model look like ... Maybe:
Possible option would be to use dose correction and then evaluation using the standard model. Though I realized that there is the same dose correction for T1,T2,R in the half of the subjects and similarly in the second half ... so the ratios will stay unchanged regardless the correction. Pro: Less subjects required in total (if you are not interested in separate analysis) Con: model , varied questions may be arised Best regards, zizou |