-
Re: Where to get version 12 of Dataiku for Linux?
You can get the current latest version (12.0.1) from here: https://downloads.dataiku.com/public/dss/12.0.1/1 · -
Re: Want to create column with random values from list
You can do this in many ways. One that I think is neat is to use a Python processor in a Prepare step: This is the sample code, modify it according to your needs as you see fit: import randomdef proc…2 · -
Re: Find if a string is in an array with a formula
Thank you for your contribution!1 · -
Re: Error with Code Recipe Python Formula
Hello, You almost got it. Indeed, the row is received as a dictionary, with the column names as keys. So you have to access the values for a given column in a row by doing: row['columnName'] Let's sa…1 · -
Re: Dataiku in AWS - how to add Python 3?
Yes, we introduced support for Python 3.7 in DSS version 9.0.0: https://doc.dataiku.com/dss/latest/release_notes/9.0.html#python-3-7 And support for Python 3.8, Python 3.9 and Python 3.10 in DSS vers…2 ·
