You are on page 1of 1

Z-Score Normalisation Z-Score Normalises every value in a dataset so that the mean of all

values is 0 and the standard deviation is 1. To normalise value, the following formula is used on
each value of Dataset Normlised value = (x – μ) / σ where: x: Original value μ: Mean of data σ:
Standard deviation of data Below steps show how to get normalised data using KNIME STEP 1:
Connect Dataset using CSV-Reader Node. STEP 2: Use Normalizer Node and connect Dataset
to Normalizer. STEP 3: Configure Normalizer with Z-Score Normalization and include column
DISTANCE for normalisation. STEP 4: Execute Normalizer.
The Discretisation of the ARRIVAL_DELAY Data discretisation is transforming continuous data
attribute values into a defined collection of intervals and assigning a distinct value to each
Interval. Data discretisation in KNIME can be done using Rule-Engine Node one can assign a
category to an attribute using rule-engine. The following steps show how to do it. STEP 1:
Connect Dataset using CSV-Reader Node. STEP 2: Use Rule-Engine Node and connect
Dataset to Rule-Engine Node. STEP 3: To categorize attributes create rules into the
Rule-Engine terminal. STEP 4: Execute Rule-Engine. STEP 5: Connect Csv-Writer Node with
Rule-Engine node and execute to get CSV file as output. STEP 6: Use Value Counter Node and
Connect it to Rule-Engine STEP 7: Configure Value-Counter Node and select an appropriate
column to count frequency. STEP 8: Execute Value-Counter Node to get frequen

You might also like