0 votes
in SoSci Survey (English) by s114201 (150 points)

Hello :),
could you please advise me how to make randomization of experiment and control group with 70:30 split in the results?
I only have one experiment group and one control group.
Thank you!
Karin

1 Answer

+1 vote
by SoSci Survey (304k points)

The easiest solution here is to (technically) create 10 experimental groups (codes) in a random generator question and then recode 1..7 to group A and 8..10 to group B.

if (value('RG01') <= 7) {
  put('RG02_01', 1);
} else {
  put('RG02_01', 2);
}

For the above code, you need a random generator RG01 and an "internal variables" question RG02 with one variable RG02_01.

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...