Skip to content
Prev 347777 / 398500 Next

New to R

Hi Lalitha,
Your description is more like calculating a composite score from the
values observed on ten attributes, which can then be ranked. Perhaps
you want to standardize the observed values to insure that the result
is not dominated by the attribute with the numerically highest
variance. For example:

V1<-rnorm(10,5,5)
Z1<-scale(V1)

You can then combine your ten standardized (Z) scores to form a
composite score and rank your subjects on that.

Jim
On Tue, Feb 3, 2015 at 6:48 PM, Jeff Newmiller <jdnewmil at dcn.davis.ca.us> wrote: