0
我想知道如何使用r raster
corLocal
函數爲類似的方法來分析我有多於two
層時的相關性。 ppcor
包有pcor
函數可以處理,但我很想知道如何使用raster
包來實現該功能。這裏是一個例子,但顯然它只適用於two layers
,並且不允許你使用偏相關。光柵與兩層以上的corlocal
library (raster)
bio <- crop(raster::getData('worldclim', var='bio', res=10),extent(100, 120, 30, 40))
biocor <- corLocal(bio[[1]],bio[[2]], method='kendall',test=F, exact=FALSE)