我正在尝试使用R分析一些循环数据。我正在使用以下代码对数据集的子集进行瑞利测试:
CC_062818_5AS <- subset(Assay_Data, select = T1:T17,
Nest_ID == "CC-062818-5AS")
产生一个如下所示的向量:
T1 T2 T3 T4 T5 T6 T7 T8 T9 T10 T11 T12 T13 T14 T15 T16 T17
1 135 105 99 95 86 82 73 121 98 88 86 86 83 113 109 104 99
我像这样运行Rayleigh测试:
rayleigh.test(CC_062818_5AS, mu = 86.8)
并获得以下结果:
Rayleigh Test of Uniformity
Alternative with Specified Mean Direction: 5.118591
Test Statistic: 0.1542
P-value: 0.1863
Warning messages:
1: In as.circular(x) :
an object is coerced to the class 'circular' using default
value for the following components:
type: 'angles'
units: 'radians'
template: 'none'
modulo: 'asis'
zero: 0
rotation: 'counter'
conversion.circularxradians0counter2pi
我是完整的统计初学者,也是R初学者。我拥有的数据应该有针对性-它们与我领域中的数据一样具有针对性。数据以度为单位。我尝试将数据强制自己变为圆形,以度为单位,而不是默认的弧度,但这并没有什么不同。我在做什么错了?