Hi all,
I'm making a non-inferiority study: two groups complete a test (where it is possible to score 0-30 points).
I already have the test results for groupB, they scored a mean of 22.5 points. I want to investigate if groupA performs non-inferior to groupB.
My non-inferiority margin = 3 points (corresponding to a score of 19.5 points).
I'm not entirely sure how to perform the test if data are not normally distributed.
If data are normally distributed, I would use the following two-one-sided-t-tests (using the tost-package):
If data are not normally distributed, would this be the correct analysis to do?
Also, I'm not entirely sure how to formulate my % confidence interval and alpha. In practice I am using a 95% CI and alpha=0.05 (the default in t-tests), so should I write this? On the other hand, given the nature of a non-inferiority study, the analysis is one-sided, why I might instead formulate it as an alpha=0.025 and 97.5% CI?
Thank you for your time.
I'm making a non-inferiority study: two groups complete a test (where it is possible to score 0-30 points).
I already have the test results for groupB, they scored a mean of 22.5 points. I want to investigate if groupA performs non-inferior to groupB.
My non-inferiority margin = 3 points (corresponding to a score of 19.5 points).
I'm not entirely sure how to perform the test if data are not normally distributed.
If data are normally distributed, I would use the following two-one-sided-t-tests (using the tost-package):
Code:
tostt test_score == 22.5, eqvtype(delta) eqvlevel(3) alpha(0.05)
If data are not normally distributed, would this be the correct analysis to do?
Code:
tostsignrank test_score == 22.5, eqvtype(epsilon) eqvlevel(3) alpha(0.05)
Also, I'm not entirely sure how to formulate my % confidence interval and alpha. In practice I am using a 95% CI and alpha=0.05 (the default in t-tests), so should I write this? On the other hand, given the nature of a non-inferiority study, the analysis is one-sided, why I might instead formulate it as an alpha=0.025 and 97.5% CI?
Thank you for your time.
Comment