I hope you are all good! I am asking for help to perform a 2-sided significance tests at the significance level of 0.05 to test whether the correlations are equal to 0.
This is the dataset I have, and these are the following results from the estimates of the Pearson correlation coefficient and the Spearman correlation coefficient of sys12 with whr and of sys12 with bmiB.
dat_link <- url("KiGGS03_06.RData")
load(dat_link)
dat <- KiGGS03_06
whr <- as.numeric(as.character(dat$whr))
bp <- as.numeric(as.character(dat$sys12))
cor.test(whr, bp, method = "pearson")
cor.test(dat$bmiB, bp, method = "pearson")
cor.test(whr, bp, method = "spearman")
cor.test(dat$bmiB, bp, method = "spearman")
However, after this I don't know how to calculate the 2-sided t-test. Could anyone help me please! I would really appreciate it