# Compare weighted and unweighted result
X=1:10
W=1:10
Kolm(X)
Kolm(X,W)
# Compare raw and standardized data.
Kolm(X,W)
Kolm(X,W, scale ="Standardization")
# Changing units has an impact on the final result
Kolm(X)
Kolm(10*X)
# Changing units has no impact on the final result with standardized data
Kolm(X,scale ="Standardization")
Kolm(10*X,scale ="Standardization")
Run the code above in your browser using DataLab