-
Re: Masking of middle string of text
Hi @Aminmin , For multiple email addresses separated by semicolon (such as F.musa@temp.com.my;farhanm@yahoo.com; ) you could use a Python recipe with below code to split them and replace the middle o…2 · -
Re: excel function RIGHT() on Dataiku
Hi @UN , You can extract the right 3 characters of the data using a Prepare recipe and the formula substring(line,-3)3 · -
Re: Transformation of dataset
Hi @cbimou , Based on the images you need to do cartesian product between 2 columns. This can be achieved by doing a cross join between the input dataset and itself and keeping first column from the …2 · -
Re: End of Month Calculation
Hi @hemsharma82 , Below is the Python code that calculates last day of the current month based on the current date returned by the now() function: import datetime current = datetime.datetime.now()pri…2 · -
Re: Saving Model Results from Python Recipe
Hi @nsrishan The results of your model can be stored in an output dataset. Then you can use this dataset as an input in another Python recipe to compare the results of the model. Examples of how to w…1 ·