I want to apply feature scaling technique to my dataset to scale the feature. In particular I want to use scaling to unit length technique to scale my features. I did a bit research on what packages are available for scaling. I did come across these from the internet sources, [enter link description here][1]
[1] scale in R - from one of the answers, I got to know that this scaling uses the Z score normalization technique.
Is there any package already available to implement scaling to unit length in R? I want to know if there is any package available which implements this formula ,
X` = X/(||X||).
Something like this?