This shows you the differences between two versions of the page.
| en:iot-reloaded:preprocessing [2024/09/25 12:44] – created agrisnik | en:iot-reloaded:preprocessing [2024/09/25 12:47] (current) – agrisnik | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== Level 5 Headline | + | ===== Data preprocessing in clustering |
| + | {{: | ||
| + | Before starting clustering several important steps have to be performed: | ||
| - | Significant | + | * **Check if the used data is metric:** In clustering, the primary measure is Euclidian distance (in most cases), which requires numeric data. While it is possible to encode some arbitrary |
| + | * **Select the proper scale:** For the same reasons as the distance measure, the values of each dimension should be on the same scale. For instance, customers' | ||
| + | * **Unity interval:** a minimal factor value is substructed from the given point value and divided by the interval value, giving the result 0 to 1. | ||
| + | * **Z-scale: | ||
| - | - Check if the used data is metric: In clustering, the primary measure is Euclidian distance (in most cases), which requires numeric data. While it is possible to encode some arbitrary data using numerical values, they must maintain the semantics of numbers, i.e. 1 < 2 < 3. Good examples of natural metric data are temperature, | ||
| - | - Select the proper scale: For the same reasons as the distance measure, the values of each dimension should be on the same scale. For instance, customers' | ||
| - | o Unity interval: a minimal factor value is substructed from the given point value and divided by the interval value, giving the result 0 to 1. | ||
| - | o Z-scale: The factor' | ||
| - | |||
| - | Summary about clustering | ||
| - | - Besides the discussed, there are many other clustering methods; however, all of them, including the discussed, require prior knowledge about the problem domain; | ||
| - | - All of the clustering methods require setting some parameters which drive the algorithms. In most cases, the value setting might not be intuitive and may require interesting fintuning. | ||
| - | - Proper data coding in clustering may provide a significant value even in complex application domains, including medicine, customer behaviour analysis, and finetuning of other data analysis algorithms. | ||
| - | - In data analysis, clustering is used among the first methods to acquire the internal structure of the data before applying more informed methods. | ||