-
Re: Dataiku version installed on command line
Hello, This information is provided in the dss-version.json file inside the DSS data directory.1 · -
Re: Dataiku version installed on command line
Would you please clarify what you mean by "multiple version folders"? It is possible that you have different folders like: dataiku-dss-X.Y.Z Those would be past installation directories. Wh…1 · -
Re: Collect all months between 2 dates in a string column
Hello, The custom Python processor in a Prepare recipe is probably the best option here. I have adapted the code from the following Stack Overflow post, which is essentially your requirement: https:/…2 · -
Re: How to calculate number of datasets used in merge recipe
Hello @shak99 You can do this by leveraging the DSS Python API. Here’s a sample code snippet to get you started: import dataikuclient = dataiku.api_client()project = client.get_project("PROJECTK…1 · -
Re: Unexpected Python error
Hello, There is no problem with the loc method. The KeyError is telling you that the ‘Q4’ column cannot be found in the dataframe. You should check that is indeed the case. Having said that, if you w…2 ·
