I've scaled my variables before using k means clustering. Now I want to be able to analyze these clusters. How do I bring the variables back to the original scale. I've used the following codes:
Scaled the numeric variables
Data$scaledVariable=scale(Data$Variable)
Attach the scaled variables to a data frame and make computations on that.
new_data=data.frame(Data$scaledVariable,Data$scaledVariable2,Data$scaledVariable3)
Hope this is more descriptive.