could not find function "dkuReadDataset"
UserBird
Dataiker, Alpha Tester Posts: 535 Dataiker
Hello eveyone,
I installed R following the instruction here : https://doc.dataiku.com/dss/latest/installation/r.html
Everything seem to be ok because the R kernel is loading.
But when I tried to merge two datasets it is not working
My code :
mydataset1 <- dkuReadDataset("mydataset1_prepared")<BR />mydataset2 <- dkuReadDataset("mydataset2_prepared")<BR />total <- rbind(mydataset1, mydataset2)<BR />
Result:
The error Error in eval(expr, envir, enclos): could not find function "dkuReadDataset" Traceback:
Have you any idea how to solve this ?
Thank you for your help
I installed R following the instruction here : https://doc.dataiku.com/dss/latest/installation/r.html
Everything seem to be ok because the R kernel is loading.
But when I tried to merge two datasets it is not working
My code :
mydataset1 <- dkuReadDataset("mydataset1_prepared")<BR />mydataset2 <- dkuReadDataset("mydataset2_prepared")<BR />total <- rbind(mydataset1, mydataset2)<BR />
Result:
The error Error in eval(expr, envir, enclos): could not find function "dkuReadDataset" Traceback:
Have you any idea how to solve this ?
Thank you for your help
Answers
-
Hi - did you manage to successfully import the dataiku R package first ?
library(dataiku)
mydataset1 <- dkuReadDataset("mydataset1_prepared")
mydataset2 <- dkuReadDataset("mydataset2_prepared")
total <- rbind(mydataset1, mydataset2)Thanks,