Export a CSV file from R Jupyter into the Dataiku flow

JoaoDomingosEst
Level 1
Export a CSV file from R Jupyter into the Dataiku flow

Hi guys, i need a help, im using R Jupyter notebook, and now i need to export my output (a database in csv format) to Dataiku flow

#Saved in csv by R

write.csv(mydata,file="new_data_name")

 

Anyone knows how i could do this?!

Apreciate you help.

@R

0 Kudos
2 Replies
tgb417

@JoaoDomingosEst ,

If, I understand correctly you want to save a data frame out of R into your DSS flow.  This is done using the Dataiku R package.  You might find the R Dataiku package documentation helpful.  You can find the documentation here.

In particular the dkuWriteDataset function is likely what you are interested in.  That documentation is here

Something like this. 

# write the iris dataset to Data Science Studio
dkuWriteDataset(iris, "irisDataiku")

 Here is a link out to the Dataiku academy, to a tutorial on using R and Dataiku together.

https://academy.dataiku.com/r-and-dataiku-dss/506859

--Tom
JoaoDomingosEst
Level 1
Author

Perfect! it works!!

im very thankfull