This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
I am trying to load R package in R tool but i am getting this error
"Error: R (2): Error in library(RODBC) : there is no package called 'RODBC'"
The package/library is is installed in the Alteryx /R Folder but is not loading
Is there anyway to resolve this issue ?
I am using this to load package
library(RODBC)
OR
library("RODBC")
Solved! Go to Solution.
When you say it's installed... did you try running a workflow with this in R tool?
install.packages('RODBC', lib="C:/wherever you saved this library")
library(RODBC, lib.loc ="C:/Program Files/Alteryx/R-3.5.3/library")
OR
library("RODBC", lib.loc ="C:/Program Files/Alteryx/R-3.5.3/library")
Not worked for me
the same library used by R environment
But in Alteryx it's not working
Uninstalling and reinstalling the package works for me