-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
variance ratio #619
base: main
Are you sure you want to change the base?
variance ratio #619
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #619 +/- ##
==========================================
+ Coverage 90.74% 90.90% +0.16%
==========================================
Files 57 58 +1
Lines 3564 3617 +53
==========================================
+ Hits 3234 3288 +54
+ Misses 330 329 -1 ☔ View full report in Codecov by Sentry. |
Let's a few options here for CI methods and computing SD ratio instead, pulling them from the metafor::escalc() code. (SD ratios are often called variation/variance ratios in biology and ecology work.) Maybe let's call the function |
For independents samples, yi <- log(sd1i/sd2i) + 1/(2 * (n1i - 1)) - 1/(2 * (n2i - 1))
vi <- 1/(2 * (n1i - 1)) + 1/(2 * (n2i - 1)) What should
Sure. |
vi is the same -- the adjustment is an additive constant so it doesn't affect the variance because of the calculus |
Oh right, duh 🤦♂️ |
No description provided.