-
How do I see the computed column in Data iku?
Hi I'm new to Dataiku. I'm using Dataiku 13.2.2. Currently I'm going through Core Designer Certificate from Dataiku academy. I have generated 3 calculated field using prepared recipes. But the calculated fields are not visible in my prepared data set. Can you please let me know the steps to view those fields? Operating…
-
Conditionally attaching a file to an email reporter
Hi, We attach the final dataset to a scenario email reporter when it is complete. The issue is that when the scenario fails, we want to send the email with no attachment. When the scenario passes, we want to attach the Excel file. How can this be done? thx Operating system used: WIndows 10
-
About using python code from Global Shared Code
Hello, I have added a file named test_flow_global.py at Global Shared Code at path lib-python (main folder)--> python (sub-folder), the file contain def function that I want to just import and test in a notebook, how can I do that ? I am just a beginner in Python so looking for any help. saved file name - test_global.py…
-
I'm being redirected to another site instead of my Dataiku instance.
I'm on student license.Until yesterday,I was able to open my instance,but now I'm being redirected to revizto . com.Please solve my problem. Thanks. Operating system used: Mac OS 15.1
-
Error with "Optical Character Recognition (OCR)"
Hello, When I try to use the recipe "Optical Character Recognition (OCR)" on a folder containing grayscaled pictures (obtained with "Greyscale" recipe), it fails. The error type is: "Error in Python process: At line 22: <class 'ImportError'>: libGL.so.1: cannot open shared object file: No such file or directory". Can you…
-
Code Studio, Streamlit app needs to write back to data set.
Hello Community, i have a Streamlit app on Code studio which reads data from the Datasets. i am trying to write back comments from Streamlt to Dataiku dataset. When i try to use the below code df_write = dataiku.Dataset('Comments db') df_write=write_with_schema(df_user_comments,drop_and_create=True) it doesnt work. giving…
-
This problem is occurring on the Datiaku platform. What can I do to solve it?
-
Removing project tags in dataiku via API
For updating project tags I've tried the below mentioned options. awb_eng_project_metadata = awb_eng_project.get_metadata() awb_eng_project_metadata['tags'] = [] awb_eng_project.set_metadata(awb_eng_project_metadata) awb_eng_project_metadata['tags'] = ['foo'] awb_eng_project.set_metadata(awb_eng_project_metadata) While…
-
Group Recipe - Empty dataset
Hello, I have an issue regarding a group recipe. Does it work on an empty dataset ? Secondly, if it doesn't work, is it possible to stop a scenario if this dataset is empty ? Thank you for your answer !
-
Create bundle with release notes through Python API
Hello everyone! Through the Web UI, when creating bundles, we are allowed to enter a text for release notes. I wonder if there is a way to do the same through the Python API, which we use to automatically create bundles as part of our CI/CD pipeline. The pipeline we created was inspired by Dataiku's template here which…