Ana Cristina ☆ Brazil, 2018-02-23 22:33 (2595 d 22:07 ago) Posting: # 18453 Views: 18,360 |
|
For example: I have 16 subjects and two sequences (TR and RT) and of these 16 subjects: 8 are female (4 in the TR sequence and 4 in the RT sequence) 8 are male (4 in the TR sequence and 4 in the RT sequence) I would like to know if anyone has the formula to do in R the balanced randomization by sex and sequence as in this example. I need something general similar to this example and that generates a seed. sujeito sexo seq period 1 period 2 1 F 1 T R 2 M 2 R T 3 M 1 T R 4 M 2 R T 5 F 1 T R 6 F 2 R T 7 M 2 R T 8 M 1 T R 9 M 1 T R 10 M 2 R T 11 F 2 R T 12 F 1 T R 13 F 2 R T 14 F 1 T R 15 M 1 T R 16 F 2 R T thank you, Ana Cristina Edit: Category changed; see also this post #1. [Helmut] |
ElMaestro ★★★ Denmark, 2018-02-23 23:24 (2595 d 21:16 ago) @ Ana Cristina Posting: # 18454 Views: 16,345 |
|
Hi A.C., Let us say you have 16 subjects. 8 will be female, 8 will be male. As you enroll them into the study you assign subjects numbers sequentially so that the females are 1..8, and the males are 9..16. The follwing code will provide a randomizer: ## we have N subjects, N is divisible by 4 It is a good idea to use a new seed every time and to record the one you are actually using. Note also that this algo assigns unique subjects numbers to every participant. Then we do not need to worry about Subject%in%Sequence and we are compliant with ICH E6 §1.58 (unique identifier). ![]() — Pass or fail! ElMaestro |
Ana Cristina ☆ Brazil, 2018-02-24 17:47 (2595 d 02:52 ago) @ Ana Cristina Posting: # 18456 Views: 16,290 |
|
Dear ElMaestro, Perfect thank you! Just one detail: in the output (result) the subjects appear in the sequence (1 to 8 female and 9 to 16 male). Is it possible to randomize so that the output genre appears like this? For example ... not necessarily in that sequence .... but randomized the genre. 1 F 2 M 3 F 4 M 5 M 6 F ????? And another detail, I need in the output of the result to appear the seed used and the date and time that the randomization was performed. It's possible? By the function randomizeBE the result appears like this: Example: seed 2047732 blocksize: 2 created: 2018-02-24 12:38:06 Sorry about my English, Thank you, Ana Cristina |
ElMaestro ★★★ Denmark, 2018-02-24 18:32 (2595 d 02:08 ago) @ Ana Cristina Posting: # 18457 Views: 19,730 |
|
Hello Ana Cristina, I am thinking you can play around with this:
When the last argument is TRUE the function will print the randomisation code into a text file which is dated, contains the seed and which you can print and date+sign by hand. The filename is unique to the combination of date and seed. — Pass or fail! ElMaestro |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-24 18:52 (2595 d 01:48 ago) @ Ana Cristina Posting: # 18458 Views: 16,561 |
|
Hi Ana, ❝ By the function randomizeBE the result appears like this: ❝ Example: seed 2047732 blocksize: 2 created: 2018-02-24 12:38:06 Function RL4() of package randomizeBE generates a list containing as one of its elements the data frame rl . You can manipulate it as you like: Add a column for sex, shuffle it, and assign new subject numbers. If you want to see what is going on behind the scenes, uncomment the print -lines.
Gave on my machine without a specified seed (i.e., based on the system clock and the process ID)
You have to give the code in the SAP. Otherwise an assessor will not be able to reproduce it. If you want to get output similar to your original post, add these lines before the final print(random)
to get:
Edit: Don’t use this code. For an update see this post. — 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-02-26 12:56 (2593 d 07:43 ago) @ Ana Cristina Posting: # 18463 Views: 16,095 |
|
Dear Ana Cristina, just out of curiosity: Why do you want to randomize the Gender ![]() Gender and subject are an entity (at least in almost all cases except transgender subjects). Thus taking e.g. 8 males and 8 females and randomize them to the sequence groups is enough IMHO. — Regards, Detlew |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-26 16:46 (2593 d 03:53 ago) @ d_labes Posting: # 18468 Views: 16,158 |
|
Dear Detlew & Ana Cristina, ❝ Gender and subject are an entity (at least in almost all cases except transgender subjects). ❝ Thus taking e.g. 8 males and 8 females and randomize them to the sequence groups is enough IMHO. Good point! @Ana Cristina: Simplified R-code (changes) including the runs test for randomness:
Gives with a random seed on my machine
Note that if you change the names of columns (like in this post) to Portuguese and/or remove the sequence column, the summary will not work any more.Edit: Don’t use this code. For an update see this post. — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
Ana Cristina ☆ Brazil, 2018-02-27 14:16 (2592 d 06:24 ago) @ Helmut Posting: # 18470 Views: 15,898 |
|
Dear, Now it's already randomized by gender as well. When I say randomize by gender, it should not generate the answer: 1 F 2 F 3 F 4 F 5 F 6 F 7M 8M 9M 10 M 11 M 12M And generate yes to an example: 1 F 2 F 3M 4 F 5 F 6 F 7 M 8 M 9 F 10 M 11 M 12M And that's okay. My question now, for me to do the same for 3x3 crossover studies: (TTR) (RRT) and 4x4: (TTRR) (TRTR) ... how to change the formula? Ana Cristina |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-27 18:06 (2592 d 02:34 ago) @ Ana Cristina Posting: # 18471 Views: 16,370 |
|
Hi Ana, ❝ Now it's already randomized by gender as well. When I say randomize by gender, it should not generate the answer: ❝ 1 F ❝ 2 F ❝ 3 F ❝ 4 F ❝ 5 F ❝ 6 F ❝ 7 M ❝ 8 M ❝ 9 M ❝ 10 M ❝ 11 M ❝ 12 M Did you try it? It doesn’t. But don’t use my previous codes because you might get different numbers of females and males in the sequences. ![]()
❝ My question now, for me to do the same for 3x3 crossover studies: (TTR) (RRT) That’s an unusual design. ❝ and 4x4: (TTRR) (TRTR) ... And this one is strange, IMHO. ❝ how to change the formula? I packed everything into a function with some fair degree of error handling.
Examples: random.sex(n = 12, sequences = c("TR", "RT")) gives
random.sex(n = 12, sequences = c("TRT", "RTR")) gives
random.sex(n = 12, sequences = c("TRTR", "RTRT")) gives
random.sex(n = 12, sequences = c("TRR", "RTR", "RRT")) gives
random.sex(n = 12, sequences = williams(ntmt = 3)) gives
random.sex(n = 12, sequences = williams(ntmt = 4)) gives
Note the warning. You would need 8 or 16 subjects if you want sex balanced within the 4 sequences. If you insist in this, you can used the optional argument extend="up" . Decreasing the sample size by extend="down" is also supported but doesn’t make much sense.random.sex(n = 12, sequences = williams(ntmt = 4), extend = "up") gives
If you want to reproduce a run, add the argument seed=X to the function call (where X is the seed given in the output of the previous run).— 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-02-28 09:43 (2591 d 10:56 ago) @ Helmut Posting: # 18478 Views: 15,870 |
|
Dear Helmut, dear Ana, again asked: Why do you want to randomize gender (sex)? Usually we randomize factors we want control for. But you can't control for gender (sex) in crossover experiments as long as you have subject in your evaluation model. Try it. Make an ANOVA with factors subject, period, treatment and additional gender. It bombs you out! Because subject and gender are confounded. Moreover it is highly debatable that gender differences are observable in crossover designs where we deal with differences between Test and Reference, both with the same active API in it. If there are gender differences in response to the API they are supposedly present in both formulations and cancel out. If not you have a gender-by-treatment interaction, aka subject-by-treatment interaction. The times of such an term are gone long years before when the "individual bioequivalence" was disestablished. — Regards, Detlew |
nobody nothing 2018-02-28 11:14 (2591 d 09:26 ago) @ d_labes Posting: # 18480 Views: 15,835 |
|
❝ Moreover it is highly debatable that gender differences are observable in crossover designs where we deal with differences between Test and Reference, both with the same active API in it. ❝ If there are gender differences in response to the API they are supposedly present in both formulations and cancel out. But if in, let's say, males Cmax is always 50% higher or AUC 40% lower you should see something in your data (plots)... Totally out of discussion that it's not the purpose of BE-studies to investigate sex as a covariate in PK. But in the times of SJWs and alike you have to justify (!) if you don't want to have this aspect investigated in your BE-study. — Kindest regards, nobody |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-28 13:42 (2591 d 06:57 ago) @ nobody Posting: # 18482 Views: 15,860 |
|
Hi nobody, ❝ […] it's not the purpose of BE-studies to investigate sex as a covariate in PK. Agree. For ages we routinely included ♀/♂ in our studies. Bioanalysts were in ![]() ❝ But in the times of SJWs and alike you have to justify (!) if you don't want to have this aspect investigated in your BE-study. BfArM = early SJW? In March 2005 we received a deficiency letter. Relevant section in all of its doubtful beauty: Gemäß §7 Abs. 2; Ziffer 12 GCP-V fehlt im Prüfplan eine Begründung dafür, dass die gewählte Geschlechterverteilung in der Gruppe der betroffenen Personen zur Feststellung möglicher geschlechtsspezifischer Unterschiede bei der Wirksamkeit oder Unbedenklichkeit des geprüften Arzneimittels angemessen ist. Heck, it was a “sprinkle study” and the drug has no sex-related differences in PK. Since that time, ♂ only.— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-28 13:27 (2591 d 07:12 ago) @ d_labes Posting: # 18481 Views: 15,971 |
|
Dear Detlew, ❝ again asked: Why do you want to randomize gender (sex)? Ana Christina wanted. I tried to help. ❝ Usually we randomize factors we want control for. ❝ But you can't control for gender (sex) in crossover experiments as long as you have subject in your evaluation model. Sure. I knew that ANVISA in the past (dunno the current state) wanted to see analyses separately for sex (i.e., split of the data set, not as a covariate). Ana Christina ∈ ![]() ![]() ❝ Moreover it is highly debatable that gender differences are observable in crossover designs where we deal with differences between Test and Reference, both with the same active API in it. ❝ If there are gender differences in response to the API they are supposedly present in both formulations and cancel out. ❝ If not you have a gender-by-treatment interaction, aka subject-by-treatment interaction. The times of such an term are gone long years before when the "individual bioequivalence" was disestablished. Agree. PS: Even if not “politically correct” I prefer sex (biological state) over gender (the FDA’s definition: “A person’s self representation as male or female, or how that person is responded to by social institutions based on the individual’s gender presentation.”). The way you dress or act will not change the PK. ![]() — 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-02-28 15:42 (2591 d 04:58 ago) @ Helmut Posting: # 18484 Views: 15,830 |
|
Dear Helmut, ❝ ❝ again asked: Why do you want to randomize gender (sex)? ❝ ❝ Ana Christina wanted. I tried to help. ![]() ❝ ... ❝ PS: Even if not “politically correct” I prefer sex (biological state) over gender (the FDA’s definition: “A person’s self representation as male or female, or how that person is responded to by social institutions based on the individual’s gender presentation.”). Was not aware of that subtle difference. Sounds good to me: "Let's make gender" is crap ![]() My wife (!) always state "To hell with all this gender bullshit!" if she hears something like "Lokomotivführer und Lokomotivführerinnen" (German politically correct notation of male or female engine driver, no english translation possible of the female denomination). ❝ The way you dress or act will not change the PK. Are you sure ![]() — Regards, Detlew |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2018-02-28 15:58 (2591 d 04:41 ago) @ d_labes Posting: # 18486 Views: 15,698 |
|
Dear Detlew, ❝ ❝ Ana Christina wanted. I tried to help. ❝ That honors you Hope my code is not too confusing. ❝ My wife (!) always state "To hell with all this gender bullshit!" if she hears something like "Lokomotivführer und Lokomotivführerinnen" (German politically correct notation of male or female engine driver, no english translation possible of the female denomination). Mine uses only Lokomotivführerinnen (without Binnen-I). ❝ ❝ The way you dress or act will not change the PK. ❝ Are you sure No. — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
Ana Cristina ☆ Brazil, 2018-03-01 04:16 (2590 d 16:23 ago) @ Helmut Posting: # 18487 Views: 15,616 |
|
Dears, Thank you very much for your cooperation, you have helped me a lot. I was able to make other randomizations from the ones you sent me and that serve the Center. I do not know much about R, but I have learned a lot from you and I will continue my learning. I'll digress. My goal is to run the whole R analysis of a bioequivalence study with the generation of the report ... One day I'll get there ! Note: thanks again and if I have any further questions, I will contact you, Ana Cristina |
Beholder ★ Russia, 2020-04-08 14:31 (1821 d 07:08 ago) @ Helmut Posting: # 21319 Views: 8,475 |
|
Hi Helmut! ❝ Note the warning. You would need 8 or 16 subjects if you want sex balanced within the 4 sequences. If you insist in this, you can used the optional argument Another way to deal with situations, when we use not 8 or 16 subjects without increasing number of subjects, would be to slightly change F/M ratio from 50/50 to, for instance, F/M ratio 47/53 (30 subjects, 14 females and 16 males). How would the code to be changed in that case? If possible. — Best regards Beholder |