Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on December 3, 2023 12:50PM
Likes: 0
Replies: 3
hello i have a list containing items as data frame type i want to make an output to this output as text file or json file if any one can help me please
It really depends what you want to do with the file after. Is this a one off export? Why do you need the output as a file? Can you explain your requirement in detail?
hello @Turribeach
yes please if you can help me
i want to have as output multiple dataframes in a managed folder if you can please help me
regards
The following Python code in a Python recipe will output the contents of the df dataframe to a CSV file:
import dataiku path_upload_file = "output.csv" handle = dataiku.Folder("Some Managed Folder") with handle.get_writer(path_upload_file) as w: w.write(df.to_csv().encode('utf-8'))