I am struggling to know how to conduct a partial correlation when data is not normally distributed...
I have tried this and it is giving me data (the code has worked), but is this how you would actually do it?
partial.r(
data <- df[, c("X", "Y", "Z")],
method = "spearman"
)
Thanks!