If I have wind direction readings from a collection of wind vanes, is there something like a t.test (or other significance test) that I can perform on the circular data? I am assuming a normal distribution (which the data below is from). I found the CircStats package, but figured I would check here for some additional guidance.
Some sample data:
df1 <- data.frame(unit=letters, wind.direction=c(99,88,93,99,86,90,101,109,109,91,86,94,106,92,99,103,110,98,107,109,93,102,92,99,109,85))
That one works fine using just a standard t.test since it doesn't wrap around zero. But,
df2 <- data.frame(unit=letters, wind.direction=c(1,350,355,1,348,352,3,11,11,353,348,356,8,3,1,5,12,0,9,11,355,4,354,1,11,347))
doesn't since its circular mean is ~0 but linear mean is ~139...
df2$wd.scaled = apply(as.matrix(df2[,2]),1,function(x) ifelse(x>180,360-x,x));mean(df2$wd.scaled= 6.69. – baha-kev Feb 27 '12 at 22:57