🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

"Importance of Z-transformation in clustering"

User: "imfaith"
New Altair Community Member
Updated by Jocelyn
Hello every body;

I haven't understand the importance of use Z-transformation in clustering process (for example k-means). It is necessary to use this transformation and what is its impact ? this transformation don't change the result of clustering ?  There are several methods of transformation, what is the most suitable for the clustering process ? ???
Thank you very much.

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "wessel"
    New Altair Community Member
    Assuming you are using k-means uses squared distance.
    Assuming you create a a new attribute: att_1b = att_1 * 100.
    If you were to use att_1b instead of att_1 during clustering, distances in att1_b are far more importance, because of the scaling.
    Typically you want all attributes have equal weight in the distance calculation, Z-transforming all your attributes allows you to do just this.

    Best regards,

    Wessel