-
Re: map a numerical range
Hi, If you are referring to something like. https://www.arduino.cc/reference/en/language/functions/math/map/ One option is using python functions are available directly in the prepare recipe. The col…1 · -
Re: Meaning of pre-join computed columns
Hi, Based on the information it looks like the pre-computed would be doing a "SELECT 1 FROM Table" Which should return the constant 1 for every row of the table if the record matches your w…1 · -
Re: Writing a file to a S3 managed folder from R (eg via ggsave)
Hi @Pascal_B , @tanguy , In your case, if you are looking to upload a ggplot png or pdf you can simply save it to a tempfile. Then read that file and upload it to the remote (S3) managed folder. Belo…2 · -
Re: SFTP Site with .Zip files (with more than just data in the .zip file)
Hi @tgb417 , Exclusion rules for files within a zip file are not available. As you suggest using a python recipe with the SFTP managed folder should do the trick. Unzip them locally or in memory, inc…1 · -
Re: get datasets list in a flowzone using api
Hi, That's because the datasets are returned as objects. If you use something like print("Zone item: %s" % item.__dict__) it will also print the dataset_name: import dataikuimport data…2 ·
