-
Re: Create a file in sftp
Hi @Mingo You need to declare your output folder as well like this out_folder = dataiku.Folder("some_sftp_folder") Then you can generate the csv of your dataframe and upload it to the folde…1 · -
Re: Data source change
You can open a recipe by double-clicking on it in the Flow screen. I can see you have several recipes that depend on your Redshift dataset, so the process would need to be repeated for each one.1 · -
Re: Data source change
Hi @emate One way of doing this would be to: - Create the filesystem dataset as per your needs. - Open the recipes immediately after the Redshift dataset and go to Input/Output tab - Modify the input…1 · -
Re: How create a column in a dataset with the date of the day, ie like sysdate ?
Hi mdaubresse, In order to add a column to a dataset you will need to create a recipe. The recipe can be of various types, but the simplest one might be a Prepare recipe, once there Click on Add New …2 · -
Re: Formula if, elif, else
Hi @MS You could try if(M<0, "negative", if(M>0, "positive","neutre")) Alternatively, you could use a Python processor and use if,elif,else as you seem to want. I …3 ·