Job failed : environment variable DKURBIN not defined

Data_Am
Data_Am Registered Posts: 2 ✭✭✭✭
Hello,

I am trying to learn Dataiku, and I can't get the simplest task of loading data to work. I wrote a sample code where I would take the initial data and replicate it 5000.

the code I am trying to make work is the following

library(dataiku)

# Recipe inputs
achat_chauss21_prepared <- dkuReadDataset("achat_chauss21_prepared")<BR />achat_chauss21 <- dkuReadDataset("achat_chauss21")<BR />
er = rep(0,5000)
c = sort(sample(nrow(achat_chauss21),5000, replace = TRUE))
er = achat_chauss21[c]

# Recipe outputs
write.dataset(er,"er")



Thank you in advance
Tagged:

Best Answer

Answers

Setup Info
    Tags
      Help me…