NNS.norm {NNS} | R Documentation |
Normalizes a matrix of variables based on nonlinear scaling normalization method.
NNS.norm(X, linear = FALSE, chart.type = NULL, location = "topleft")
X |
a numeric matrix or data frame. |
linear |
logical; |
chart.type |
options: ("l", "b"); |
location |
Sets the legend location within the plot, per the |
Returns a data.frame of normalized values.
Fred Viole, OVVO Financial Systems
Viole, F. and Nawrocki, D. (2013) "Nonlinear Nonparametric Statistics: Using Partial Moments" https://www.amazon.com/dp/1490523995/ref=cm_sw_su_dp
set.seed(123) x <- rnorm(100) ; y<-rnorm(100) A <- cbind(x, y) NNS.norm(A)