-
Re: Machine Learning Basics Course (Dataiku Academy)
This is a common error if your Dataiku instance lacks a file system connection called "filesystem_managed". You need to ask your Dataiku Administrator to create a file system connection tha…1 · -
Re: Dash app OK in VS Code but does not work inside DSS
Not every version of Dash may be supported and the way you run Dash apps outside Dataiku may be slightly different in DSS. So I suggest you start with a working Dataiku Dash Webapp and then slowly mo…1 · -
Re: Send email plugin sends email one at a time and its very slow
The plugin is not optimised for mass mailing. I would try the DSS messaging channel send() method first but again this method is not be optimised for mass mailing although it might be faster. On this…2 · -
Re: Write the schema of a pandas dataframe using the "dataikuapi" variant
You can't. But you can use the dataiku package in the API node. You can install it like this: pip install https://dss.example/public/packages/dataiku-internal-client.tar.gz Then connect like thi…1 · -
Re: Hello, how can I remove a blank caracter from a string. Thanks
Use the strip() formula function (also called trim()): https://doc.dataiku.com/dss/12/formula/index.html#string-functions1 ·