R Package to meta-analysis using HKSJ method

78 Views Asked by At

I am conducting a meta-analysis for small-number of studies (2-5). I found the Hartung-Knapp-Sidik-Jonkman method is more appropriate for a meta-analysis with a few studies. However, I did not find any packages on R which can do it. Would you please share anyone help me on this?

I tried another method for meta-analysis as I did not find package for HKSJ method.

1

There are 1 best solutions below

0
On

I found metafor package can do it. Need to add test="knha" in rma:

res <- rma(lnhr, sei=se, data=dffc, method="REML", test="knha", weighted = TRUE)