Print the corr_coef
object in two ways. By default, the results
are shown in the R console. The results can also be exported to the directory
into a *.txt file.
# S3 method for corr_coef print(x, export = FALSE, file.name = NULL, digits = 3, ...)
x | An object of class |
---|---|
export | A logical argument. If |
file.name | The name of the file if |
digits | The significant digits to be shown. |
... | Options used by the tibble package to format the output. See
|
Tiago Olivoto tiagoolivoto@gmail.com
#> --------------------------------------------------------------------------- #> Pearson's correlation coefficient #> --------------------------------------------------------------------------- #> EP EL CD CL #> EP 1.000 0.263 0.175 0.391 #> EL 0.263 1.000 0.912 0.255 #> CD 0.175 0.912 1.000 0.300 #> CL 0.391 0.255 0.300 1.000 #> --------------------------------------------------------------------------- #> p-values for the correlation coefficients #> --------------------------------------------------------------------------- #> EP EL CD CL #> EP 0.00e+00 8.92e-04 2.88e-02 4.55e-07 #> EL 8.92e-04 0.00e+00 1.97e-61 1.29e-03 #> CD 2.88e-02 1.97e-61 0.00e+00 1.39e-04 #> CL 4.55e-07 1.29e-03 1.39e-04 0.00e+00 #> #> #># }