Recently, I found something weird thing in my Rstudio. it is as follows:
It is the output of the following code.
data = iris[,-5]
scaled_data = scale(data)
colMeans(scaled_data)
I think the result of "colMeans(scaled_data)" is totally zero. But as you see, It is not a ZERO. Is there any solution for this problem? or any explanation for this? Thank you!