-
I'm running into this issue when trying to run the kaiaulu_architecture: Error in visIgraph(project_function_network, randomSeed = 1) : I'm new to Rstudio and not sure where to find this function or where it is defined |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I discovered that this is not a function that is defined in the project but actually part of a package that can be donwloaded in Rstudio via install.packages("Igraph"). Kaiaulu_architecture.rmd also requires another package "visgraph" that can be downloaded via install.packages("visNetwork"). If a function cannot be found like in that error, check the top of the file for the require fields. You'll notice that require(igraph) and require(visNetwork) are part of the require fields. Perhaps additional error messages indicating the absent packages could be helpful in the future. |
Beta Was this translation helpful? Give feedback.
I discovered that this is not a function that is defined in the project but actually part of a package that can be donwloaded in Rstudio via install.packages("Igraph"). Kaiaulu_architecture.rmd also requires another package "visgraph" that can be downloaded via install.packages("visNetwork").
If a function cannot be found like in that error, check the top of the file for the require fields. You'll notice that require(igraph) and require(visNetwork) are part of the require fields. Perhaps additional error messages indicating the absent packages could be helpful in the future.