-
Re: [WebApp] Unbinding between an entry in an HTML search bar and the python script
Hi, You may find some useful information in this tutorial: https://developer.dataiku.com/latest/tutorials/webapps/standard/form-to-submit-values/index.html. Hope this helps, Florent1 · -
Re: Python Recipe debugging-
Hi @Oh_Lily , the trouble comes from with export_DATA.get_writer(region + "/REPORT_AXIS_" +scope+ "_RG_"+ region + "_" + brand_filter + "_" + date_deb + "…1 · -
Re: Timeout with dash webapp as Model view in plugin
Hi, this is not related to Dataiku, but more globally to web servers There are many ways to overcome the timeout problem, but as you are referring to Dash webapps, I would suggest to look at https://…1 · -
Re: Failed to run function : : Dataset (name) is specified with a relative name
Hi, It seems that your endpoint is running outside the context of a project. Then you should use: project = client.get_project(<PROJECT_KEY>)dataset = project.get_dataset(<NAME>) Best1 · -
Re: How to create a categorical column from numerical column
Just use prepare recipe with the formula : if(median_income < 1.5, "label 1", if(median_income < 3.0, "label 2", "label3" ))1 ·