Data Transformation in KNIME
Mahantesh Pattadkal
Sr. Data Scientist
An expression can be formulated by
$$
$$ $$ $$
Example
replace("I loved the m@vie", "@", "o")
Output
I loved the movie
Perform mathematical transformation
Use math operators or functions and formulas
Example
max(20, 30, 70+5)
Output
75
Perform string and mathematical transformation.
Use math and string functions together.
Example
Add a comment column
Calculate minimum value
Syntax
min(column1, column2)
Expression
min($Val1$, $Val2$)
Convert it to string format
Syntax
string(input)
Expression
string(min($Val1$, $Val2$))
Syntax
join(separator, string1, string2)
Expression
join(" ", "The minimum value is", string(min($val1$,$val2$)))
Output
Comment
columnThe minimum value is 20
Data Transformation in KNIME