Best Of
-
Re: How to use python sdk to send MS Teams scenario reporter message?
Hi @bantucaravan .. Till you get a more detailed reply. There are some examples given in link for ms-teams with predefined channel and with webhook https://doc.dataiku.com/dss/latest/scenarios/custom…2 · -
Re: How to fetch run as Id for multiple scenarios
@NN i got the solution to it below script worked import dataiku user_client = dataiku.api_client() for project_key in client.list_project_keys(): project = client.get_project(project_key) for runasid…1 · -
Re: Dashboard>> Charts>>Tables
Hi, Not on the chart itself. What you can do is use a Group or Pivot recipe, creating the key with all the columns you need, and then expose the resulting table in the dashboard. I hope this helps1 · -
Re: Is It Possible to Add Multiple/All Datasets as Additional Content to a Bundle at Once
Hi @kathyqingyuxu , There is currently no bulk select and add for datasets available in the UI when creating a bundle and you have to add them one by one. If you have a lot of datasets you use the Py…1 · -
Re: How to fetch run as Id for multiple scenarios
@Srkanoje If it helps Something like below is how we have used it for our requirements import dataikuuser_client = dataiku.api_client()project=user_client.get_project('PROJECTNAME')for each in projec…1 · -
Re: Can we get the sum or count of a column in dataiku
@Ignacio_Toledo Completely Agree with you.. Summary tables is something all the BI tools i worked with used to have and i too do wish for something similar in dataiku.1 · -
Re: Can we get the sum or count of a column in dataiku
Hi @kusuma , This is one option for a python code that will write the output in a Dataiku dataset: import dataikuimport pandas as pd, numpy as npdata_for_summary = dataiku.Dataset("data_for_summ…1 · -
Re: Uipath and dataiku plugin
Hi @LYLY I answered your question here as well: https://community.dataiku.com/t5/Using-Dataiku/plugin-is-not-displayed-in-edition-version/m-p/25376/highlight/true#M9755 I hope this helps!1 · -
Re: Model deploy
Thanks a lot!1 ·