print.conf.cor: Print cor.conf

Description Usage Arguments Author(s) References See Also Examples

Description

This function prints the cor.conf object

Usage

1
2
## S3 method for class 'conf.cor'
print(x, ...)

Arguments

x

cor.conf object.

...

further arguments passed to or from other methods.

Author(s)

Takuya Yanagida takuya.yanagida@univie.ac.at

References

Rasch, D., Kubinger, K. D., & Yanagida, T. (2011). Statistics in psychology - Using R and SPSS. New York: John Wiley & Sons.

Kubinger, K. D., Rasch, D., & Simeckova, M. (2007). Testing a correlation coefficient's significance: Using H0: 0 < ρ ≤ λ is preferable to H0: ρ = 0. Psychology Science, 49, 74-87.

See Also

conf.cor

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#--------------------------------------
# Two-sided 95% Confidence Interval
# r = 0.55, n = 120

obj <- conf.cor(r = 0.55, n = 120, output = FALSE)
print(obj)

#--------------------------------------
# One-sided 99% Confidence Interval

# Generate random data
dat <- sim.cor(100, rho = 0.4)

obj <- conf.cor(dat$x, dat$y, conf.level = 0.99, alternative = "less",
               output = FALSE)
print(obj)

miscor documentation built on May 1, 2019, 10:14 p.m.