- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-22-2008 04:56 PM
(829 views)
I have gotten a request from our statistician to compute the ratio mean, variance of the ratio mean, difference between ratio means, and variance of the difference between ratio means for our clinical trial. The goal is to examine rates of different events (e.g. headache) occurring between our clinics and between our studies. The statistical documentation I received deals with stratified unequal clusters and provides some simple, yet cumbersome formulas for these statistics. I have been searching for a SAS procedure that will calculate these values, but I haven't found anything, or perhaps I simply am not recognizing the right thing.
Here are the forumlas given in case this illustrates what I need better (there are other more computational formulas I have as well):
ratio mean: r = y/x
var(r) = (1/x^2)(sum(var(y)) + r^2*sum(var(x)) - 2r*sum(cov(y,x))), sums over the strata
difference: r - r' = y/x - y'/x'
var(r - r') = var(r) + var(r') - 2cov(r,r')
Any help would be appreciated, even if that I have to write code to compute these. Thanks.
Here are the forumlas given in case this illustrates what I need better (there are other more computational formulas I have as well):
ratio mean: r = y/x
var(r) = (1/x^2)(sum(var(y)) + r^2*sum(var(x)) - 2r*sum(cov(y,x))), sums over the strata
difference: r - r' = y/x - y'/x'
var(r - r') = var(r) + var(r') - 2cov(r,r')
Any help would be appreciated, even if that I have to write code to compute these. Thanks.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Have you looked at proc means ?