I am conducting a meta-analysis of Cohen's d and some raw effect sizes are unstandardised regression coefficients. Of these unstandardised regression coefficients:
- Some are based on a binary independent variable and a continuous dependent variable
- Others are based on a continuous independent variable and a continuous dependent variable
To convert unstandardised regression coefficients to Cohen's d when the independent variable is binary and the dependent variable is continuous (1), I am using a standard formula used in the "esc_B" function from the "esc" package in R. This requires N1 and N2, the sample size in the treatment and control group.
However, I am not sure how to convert unstandardised regression coefficients to Cohen's d when both independent and dependent variables are continuous?
I can think of two potential options:
Convert the unstandardised regression coefficient to a standardised coefficient (by multiplying the unstandardised coefficient by SD_independentVar / SD_dependentVar) and then convert to Cohen's d
Use the conversion formula (from unstandardised coefficient to Cohen's d) for a binary independent variable, inputting N1 and N2 based on an assumption of the sample sizes if the continuous variable was to be dichotomised.
Any advice on this would be greatly appreciated.