Export a CSV file from R Jupyter into the Dataiku flow

JoaoDomingosEst
JoaoDomingosEst Registered Posts: 3 ✭✭✭

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

Tagged:

Answers

  • tgb417
    tgb417 Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron 2020, Neuron, Registered, Dataiku Frontrunner Awards 2021 Finalist, Neuron 2021, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Winner, Dataiku Frontrunner Awards 2021 Participant, Frontrunner 2022 Participant, Neuron 2023 Posts: 1,598 Neuron
    edited July 17

    @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

  • JoaoDomingosEst
    JoaoDomingosEst Registered Posts: 3 ✭✭✭

    Perfect! it works!!

    im very thankfull

Setup Info
    Tags
      Help me…