You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By looking at the source code, I found out about a cool feature that i needed but is nowhere mentioned. This is, the "target" parameter in the summary of a easycorrelation object. I needed a matrix of the correlations but with p and df (degrees of freedom) values. This is available, though separately, by using the parameter "target".
example to get the p-values of a correlation matrix or for each correlation test:
By the way, all functions in R/methods.easycorrelation.R should be properly documented, not just summary.easycorrelation() (but @Thibaultfq feel free to document as many as you want if you want to contribute)
By looking at the source code, I found out about a cool feature that i needed but is nowhere mentioned. This is, the "target" parameter in the summary of a
easycorrelation
object. I needed a matrix of the correlations but with p and df (degrees of freedom) values. This is available, though separately, by using the parameter "target".example to get the p-values of a correlation matrix or for each correlation test:
example to get the degrees of freedom of each correlation test (here all equal, but not always the case)
example:
Using tidyverse and
as_tibble
, one can easily add these two together creating all the info needed in one matrix.The text was updated successfully, but these errors were encountered: