-
Re: Set column names in Python recipe
Hi, You would generally not do that in a recipe, which is part of the flow / rerunnable / supposed more or less to process data, but, first in a Python notebook. You can then automate that as a "…1 · -
Re: Import xlsb
Hi, DSS only supports XLSX, not XLSB1 · -
Re: Ircorrect when using "parse date" in preaparation
Hi, Actually your input date is already parsed and does not need parsing (see that it already has meaning "Date"). By removing the timezone from the pattern (because you put it as a constan…1 · -
Re: Split dataset by stratified sampling.
Hi, This feature does not yet exist, it is however in our backlog (but we don't yet have a target date for it). This can be done in a Python recipe with a bit of help from pandas and scikit-learn.3 · -
Re: extraction first "0", and the length if "0" is at the beginning
Hi, Formula will always autocast when referencing the column directly, even if the storage type is string. To avoid that, replace x in your formula by strval("x") So it would look like: sub…1 ·