Hi, I am very new to Knime tool and stuck at very basics itself. I have a table where I need to count null (for string datatypes) and 0’s(for Int data types ) in all the columns and get the error percentage of that.
Input is like below table:
column A
a
d
f
null
null
a
d
f
column B
12
10
0
89
45
2
1
12
I’m expecting that the output as:
Count of Null found in column A = 2
null error% for column A = (8-2/100 = 0.06 )
Same goes for column B for number of 0’s
This flow splits the data into 2 groups; strings and integers. Then every (string/integer) column goes through the same loop en identify the “0” and the “null” . Via an GroupBy node the percentage (or better the mean) is calculate to identify the partition of “0” and “null” . In the end all the results-columns are collected together. Does this help you?