-
Re: Check is working and returned WARNING, Message: Cannot check: ARRAY is not numeric
Final tip: don’t forget to add your scenario step to calculate metrics and checks or alternatively you can set them to compute at build time.2 · -
Re: Check is working and returned WARNING, Message: Cannot check: ARRAY is not numeric
Try with this metric probe, it should be added on the dataset you want it to run: def process(dataset): df = dataset.get_dataframe() empty_columns = [] for col in df: if len(df[col].value_counts()) =…1 · -
Re: The 'exec_recipe_fragment' method of 'SQLExecutor2' class fails to perform
This is because the exec_recipe_fragment() method is not meant to be executed in a Notebook but in a Recipe. So run your code in a Python Recipe and it will work fine. The whole point of the exec_rec…1 · -
Re: Best approach to appending daily data from files?
Use the Files in Folder dataset and the File_Name to get your date: https://community.dataiku.com/t5/Using-Dataiku/Using-the-quot-Files-in-folder-quot-dataset/m-p/332142 · -
Re: Setting up Scenario to Run a step once a day
Hi Tom, Glad you got it working. Yes working with secenario variables can be a little pain until you work out the correct expression. Indeed I do agree with you that if you already have your latest d…1 ·