請問一下
當我build R package時, 下面的res() 會有error: https://imgbox.com/Z5H0pTgQ
res() 來自於 qr.default():
https://github.com/SurajGupta/r-source/blob/master/src/library/base/R/qr.R
res <- .Fortran(.F_dqrdc2,
qr = x,
n,
n,
p,
as.double(tol),
rank = integer(1L),
qraux = double(p),
pivot = as.integer(seq_len(p)),
double(2L*p))[c(1,6,7,8)]# c("qr", "rank", "qraux", "pivot")
請問當build package時, 該怎麼解決這個error?
謝謝!!!