-
Re: Properly implement support for Building Flow Zones in Scenarios and the Dataiku API
And this is how it looks. You add a Build step, then you click on ADD ITEM, then click on Flow Zone and select the flow zone to build.1 · -
Re: Updating project long description using Python
What exactly do you call the long description? The project description is stored here: project = client.get_default_project() project_metadata = project.get_metadata() print(project_metadata['de…1 · -
Re: How do I see the computed column in Data iku?
After step 9 (Wrote the formula for calculated field) you need to click on Apply on the top right. Then once you click on Run you need wait for the job to succeed. After that you can explore the outp…1 · -
Re: Conditionally attaching a file to an email reporter
Scenario steps and scenario reporters can both be set to execute conditionally. So create different Scenario steps or scenario reporters for each of the desired outputs. In other words have a differe…2 · -
Re: How to change the underlying table in a dataset?
If the tables are different then you need to update the dataset schema as well. Try running an autodetect after saving the settings: new_settings = dataset.autodetect_settings() new_settings.save()1 ·