-
Re: PDF export of dashboard using scenario/automatic export
Hi @Danny78 , The error "Cannot find module 'puppeteer'" suggests that there was an issue with the graphics-export installation or that it was not reinstalled following a DSS upgrade. The D…2 · -
Re: Way to count the number of columns that have values in a Row
Another way to achieve this is using below custom Python function that includes the check if there are any empty strings: def process(row): col=0 for val in row.values(): if val is not None and val!=…2 · -
Re: Custom Python function in prepare recipe
Can you try disabling SSL verification using the following code client._session.verify = False? client = dataikuapi.DSSClient(host, apiKey) client._session.verify = False1 · -
Re: Execute SQL recipe from code stored on Git?
It is not possible to load the code of a SQL recipe from a Git repository. You could use a Python recipe to execute SQL code in a Python recipe that will execute exactly like a SQL recipe. The Python…1 · -
Re: Custom Python function in prepare recipe
Hi @Usersyed , Please confirm if the data regarding the classification is going to be stored in a dataset and if the data change. In this case it's better to do a left join between dataset 1 and data…2 ·