Using Dataiku
- How do I set up two conditions? I tried this: Product == 'EB' and parseJson(stepOutcome_DroppedPols_EB) == 'SUCCESS' and this: and(Product == 'EB', parseJson(stepOutcome_DroppedPols_EB) == 'SUCCESS') …Solution by Turribeach
PS: Note that you will most likely want to use this expression:
condition1 && condition2 && conditionN && outcome == 'SUCCESS'
Read the Pro Tip section of this post to understand why. You can also use brackets and combine with the Or boolean operator || as follows:
(condition1 || condition2) && condition3
Finally the boolean functions of Dataiku's formula language can also be used here but I prefer the boolean operators since it makes the expression more readable:
and(or(condition1, condition2), condition3)
Solution by TurribeachPS: Note that you will most likely want to use this expression:
condition1 && condition2 && conditionN && outcome == 'SUCCESS'
Read the Pro Tip section of this post to understand why. You can also use brackets and combine with the Or boolean operator || as follows:
(condition1 || condition2) && condition3
Finally the boolean functions of Dataiku's formula language can also be used here but I prefer the boolean operators since it makes the expression more readable:
and(or(condition1, condition2), condition3)
Exception: Unable to instanciate a new dataset writer. There is already another active writer for th
Exception: Unable to instanciate a new dataset writer. There is already another active writer for this dataset Is there a way to allow many active writers to a data set? I have python call backs that …- Hi, I am trying to control a python continuous recipe with the test of a global project variable. I have tried this: … response = requests.get(url, headers=headers, stream=True) if response.status_cod…Last answer by
- I have 2 datasets, in one I have one column with duplicate IDs and in the other one i have the ID without duplicates, but i want to sum all the candies into the dataset where i don't have any duplicat…Last answer by
- Hi, I want to send an Alert/Notification to check max timestamp value on a dataset and and send an alert message if the date has not been updated for last 10 days. Thanks for help! Operating system us…Solution by
- Hi! I encounter a problem when importing an MLFlow model saved in a managed folder on Dataiku DSS. I use the following code: import dataiku client = dataiku.api_client() project = client.get_project("…
- Hello, when I am printing a dataframe before I save the output with write_dataframe() or write_schema_from_dataframe() and check the counts on the dataset object, it does not match. Why does it not ma…Last answer by
- Hello, I have a problem in my Dataiku flow, I want to convert a number from raw to French format And in the output dataset, all the numerical variables are NaN. Can someone help me to fix the issue ? …Last answer byLast answer by Sarina
Hi @HL,
Can you attach a screenshot of your prepare recipe "Convert number formats" settings, along with a screenshot showing the column you are attempting to convert before and after conversion?
Thank you!
Sarina - Hi, I need to designate a new flow zone as the default and delete the existing default flow zone. I don't see any way to do this?Solution bySolution by Turribeach
Well one work around this limitation is to swap all the items between the default zone and the new zone you want to be set as default. If you press shift you can multi-select flow items and move them all at once. A temp zone is advisable to use a pivot to avoid mixing your zone items.
- I am having difficulty in configuring the Standalone Evaluate Recipe It is not able to provide performance drift however i configure. The below is what i see It was also not clear on what a reference …