R - Warning message: “In cor(…): the standard deviation is zero”

后端 未结 3 2663
-上瘾入骨i
-上瘾入骨i 2021-02-18 13:26

I have a single vector of flow data (29 data) and a 3D matrix data(360*180*29)

i want to find the correlation between single vector and 3D vector. The correlation matrix

3条回答
  •  误落风尘
    2021-02-18 13:38

    A few thoughts.

    First, by using apply(), you can replace that nested loop with something like this:

    cor_ScottsCk_SF_SST_JJA <- 
        apply(ssta_winter, MARGIN = 1:2, FUN = cor, ScottsCk_flow_1981_2010_JJA)
    

    Second, it appears that >31% (596849/(360*180*29)) of the points in ssta_winter are NaN or (possibly) NA_real_. Given the return value of a correlation calculated on vectors that contain even a single NaN,

    cor(c(1:3, NaN), c(1:4))
    # [1] NA
    

    isn't it likely that all those NaNs are causing cor_ScottsCk_SF_SST_JJA to be filled with NAs?

    Third, as the warning messages plainly tell you, some of the vectors you are passing to cor() have zero variance. They have nothing to do with the NaNs: as the following shows, R doesn't complain about standard deviations of 0 when NaN are involved. (Quite sensibly too, since you can't calculate standard deviations for undefined numbers):

    cor(c(NaN, NaN, NaN, NaN), c(1,1,1,1))
    # [1] NA
    
    cor(c(1,1,1,1), c(1,2,3,4))
    # [1] NA
    # Warning message:
    # In cor(c(1, 1, 1, 1), c(1, 2, 3, 4)) : the standard deviation is zero
    

提交回复
热议问题