出于好奇,我如何直接在 R 中调用 '[.class' 函数?
我知道我可以做到:
test <- c(2,4,6)
test[2]
但是可以直接指定类吗?如果是这样,怎么办?
'[.numeric<-'(test , 2)
'[.numeric'(test , 2)
我试过这些,但他们回来了
Error: could not find function "[.numeric"
出于好奇,我如何直接在 R 中调用 '[.class' 函数?
我知道我可以做到:
test <- c(2,4,6)
test[2]
但是可以直接指定类吗?如果是这样,怎么办?
'[.numeric<-'(test , 2)
'[.numeric'(test , 2)
我试过这些,但他们回来了
Error: could not find function "[.numeric"