博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
R t-test cor.test
阅读量:5959 次
发布时间:2019-06-19

本文共 1438 字,大约阅读时间需要 4 分钟。

a = c(175, 168, 168, 190, 156, 181, 182, 175, 174, 179)

b = c(185, 169, 173, 173, 188, 186, 175, 174, 179, 180)
x<-t.test(a,b)
str(x)
class(x)
> str(x)
List of 9
 $ statistic  : Named num -0.947
  ..- attr(*, "names")= chr "t"
 $ parameter  : Named num 16
  ..- attr(*, "names")= chr "df"
 $ p.value    : num 0.358
 $ conf.int   : num [1:2] -11.01 4.21
  ..- attr(*, "conf.level")= num 0.95
 $ estimate   : Named num [1:2] 175 178
  ..- attr(*, "names")= chr [1:2] "mean of x" "mean of y"
 $ null.value : Named num 0
  ..- attr(*, "names")= chr "difference in means"
 $ alternative: chr "two.sided"
 $ method     : chr "Welch Two Sample t-test"
 $ data.name  : chr "a and b"
 - attr(*, "class")= chr "htest"
> class(x)
[1] "htest"
> x$p.value
[1] 0.3575549
> x$estimate
mean of x mean of y
    174.8     178.2
> x$estimate[1]
mean of x
    174.8
> x$estimate[2]
mean of y
    178.2
>
========================

> x<-cor.test(a,b)

> str(x)
List of 9
 $ statistic  : Named num -0.714
  ..- attr(*, "names")= chr "t"
 $ parameter  : Named int 8
  ..- attr(*, "names")= chr "df"
 $ p.value    : num 0.496
 $ estimate   : Named num -0.245
  ..- attr(*, "names")= chr "cor"
 $ null.value : Named num 0
  ..- attr(*, "names")= chr "correlation"
 $ alternative: chr "two.sided"
 $ method     : chr "Pearson's product-moment correlation"
 $ data.name  : chr "a and b"
 $ conf.int   : num [1:2] -0.758 0.455
  ..- attr(*, "conf.level")= num 0.95
 - attr(*, "class")= chr "htest"
> x$p.value
[1] 0.4955273
> x$estimate
       cor
-0.2447594
>

转载地址:http://ivuax.baihongyu.com/

你可能感兴趣的文章
SpringBoot+MyBatis开发环境搭建并实现登录权限过滤
查看>>
bond网络
查看>>
json学习笔记
查看>>
mysql硬件优化
查看>>
简单的yum配置
查看>>
NFS故障解决
查看>>
代码上线
查看>>
"error: command 'x86_64-linux-gnu-gcc' failed with
查看>>
CentOS7环境下部署Mariadb-Galera集群
查看>>
Oracle使用dump转储数据块
查看>>
STP、RSTP、PVST&PVST+、MSTP
查看>>
ESXi删除最后的快照
查看>>
OPT_PARAM Hint
查看>>
Debian 使用 iptables-persistent 持久化 iptables 规则
查看>>
SATA硬盘分区设置与安装详解
查看>>
iptalbes配置ftp的主\被动模式
查看>>
账号和权限的管理
查看>>
nginx 某个url或者url下面的图片不能访问就跳到指定的url
查看>>
利用44951 event解决LOB SPACE enq HW - contention等待争用
查看>>
域名301跳转
查看>>