-
Dataframe pivot table from python doesn't save properly as Dataiku dataset
Hi everyone, I am creating a pivot table using pandas data frame in python. df_pivot = pd.pivot_table(df, values=['Units'], index =['Name', 'City', 'State', 'Zip'], columns= ['Date'], aggfunc={'Units': 'sum'}, margins = True, fill_value=0) However, when I save it using the following: dataset_new = dataiku.Dataset("Dataset…
-
How do I read a yml file from the dataiku library?
I have a yml config file and want to read it in my notebooks, how do I do that?
-
How to download a document for all the Scenarios implemented in Project
Hi, for example we can export flow in document format. Is their a similar way to export all scenarios info in document format. Thanks
-
Changing the default font size for all new charts
I often send screenshots of the charts to my stakeholders over Teams chat to get quick confirmations/alignment on the intermediary results. A feedback I heard often is that they are having a hard time reading the legend, axis titles, values on axis etc. I don't want to manually change the font size for all these different…
-
fekport': nan, what does this mean?
hello, everyone I'd like to ask about the cause of the result from executing the following code: client = dataiku.api_client() prj_key = dataiku.Project().project_key project = client.get_project(prj_key) scena = project.get_scenario(scenario_id) The result is: { … 'progress ': { … , 'fekport' : nan, …} … } In other…
-
Function calling for custom llm connections
Hi, When can we expect function calling capabilities for custom LLM connections? Is there an estimated release timeline? Tool calls are supported on the compatible completion models of some LLM connections: OpenAI Azure OpenAI Azure LLM Anthropic Claude Anthropic Claude models on AWS Bedrock connections MistralAI Thank you!
-
How can you export a csv file to a folder using Python code, with specified path names ie 2024-09?
-
Creating a dropdown in an exported end-user dataset
I have created a report that is downloaded as an excel and stored into a fileshare. This reprot is then shared with external stakeholders for feedback. I would like this feedback to be in a column with a dropdown of options. Due to the volume of stakeholders, I cannot do this for each report manually and would like to…
-
Convert files name in a folder to a column
Hi community, I have a specific use case where my data are stored in a Dataiku folder on S3 in separated CSV files everyday. For instance, the extract date is only stored in the name of the files and not inside the files itself. I want to use the 'Create a dataset' function to create a new dataset from this folder and I…
-
How to run multiple flows at a time with different datasets?
We have created a flow which takes in different input datasets and updates many tables in Snowflake. There are many scenarios to trigger the recipes, and the scenarios are run using API endpoints which are triggered from a frontend website. What we want to do is run the flow for multiple inputs. Each of the input will…