-
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 · -
Re: Why are the probabilities different?
Hi, You are correct that the Jupyter notebook export is a rough translation of how the model is created, aimed at education and scaffolding purposes, which does not aim at being an exact replica of t…1 · -
Re: How to remove partitioning?
Hi, A fairly ugly but efficient way of doing that is to define another dataset, non partitioned, pointing to the same location (table or file path). However, there won't be a link in the Flow for tha…1 · -
Re: save out a file from IPython notebook
Hi, "write_with_schema" does not create the dataset, it only "fills" it. You need to first declare the dataset in your Flow. The best way to do it is to create it as a "manag…1 · -
Re: Are there different ways to set up code environments?
Hi, The syntax in the "requested packages" is actually a pip requirements file, so you can simply put the URL of your wheel here So in essence, you just need the following in your "req…1 ·
