-
Re: How to delete files in Managed Folders if Python process is running remotely?
You can use the delete_path() method: output_folder.delete_path('/Test3_400036.xlsx'ï¼ https://developer.dataiku.com/latest/api-reference/python/managed-folders.html#dataiku.Folder.delete_…1 · -
Re: Computation engine
It's impossible to know the answer to your question without more details of what you are trying to do, what does the prepare recipe do, what engines do you have available, where will the data co…1 · -
Re: Data transfer
There is no built-in support but you can have a Shell recipe which is basically able to execute any OS command you have in your machine or even a Python recipe with can also execute OS programs via P…1 · -
Re: Shapley computation trought Spark
Hi, can you please paste the code in a Code Block (look for the </> icon) so it can be copy/pasted? Thanks1 · -
Re: Force substring to integer
In a Prepare recipe use a Formula processor and add this: if(isError(toNumber(substring(val("Your Column Name"), -4))), 0, toNumber(substring(val("Your Column Name"), -4))) In my …1 ·