3
今天,我未能將apply
函數應用於modularity
函數,其中後者函數位於'igraph'包中。以下是該代碼和結果」將「應用」功能應用於「模塊化」功能時出錯
> library(igraph)
> g = graph.full(2)
> modularity(g, 1:2)
[1] -0.5
> apply(FUN = modularity, MARGIN = 1, X = matrix(1:4, ncol = 2), graph = g, weights = NULL)
Error in UseMethod("modularity") :
no applicable method for 'modularity' applied to an object of class "c('integer', 'numeric')"
我能夠使用apply
和modularity
功能以這種方式並沒有錯誤消息昨天就出來了。但今天 - [R拋出上述錯誤信息。有任何人碰到這個問題?請告訴我如何解決這個問題。謝謝!
它的工作原理。謝謝! – 2016-09-10 10:43:31