Reputation: 2593
I have c and Fortran function libraries in linux with .so files. I am trying to load them in R session but is.loaded() returns a FALSE.
Here are the steps I am following:
Now when I check the status using is.loaded("test.so"), it returns FALSE.
What i am missing here?
Upvotes: 0
Views: 150
Reputation: 176648
Read ?is.loaded
: "symbol: a character string giving a symbol name."
You're passing a shared library name, not the name of a symbol in that library (unless "test.so" contains a symbol also named "test.so").
Upvotes: 1