Displaying 1 result from an estimated 1 matches for "group_weight".
Did you mean:
group_height
2009 Jul 31
1
scale subsets of grouped data in data frame
...In RM, we can simply use two operators:
subgroup iteration
attribute value selection (Can use a regex for the attrribute name.)
I can do this in R with a lot of code and manual steps. It would be
really nice to find a more automated way.
My data looks like this
group group_height group_weight height weight
g22 3.2 8.896 3.2 8.896
g22 2.5 6.95 2.5 6.95
g22 3.1 8.618 3.1 8.618
g49 2.4 6.672 2.4 6.672
g49 4.2 11.676 4.2 11.676
g49 2.5 6.95 2.5 6.95
g55 2.6 7.228 2.6 7.228
g55 3.4 9.452 3.4 9.452
g55 3.3 9.174 3.3 9.174
What I want to do is scale th...