Displaying 2 results from an estimated 2 matches for "femur".
Did you mean:
lemur
2001 May 01
0
Can this be vectorized?
...me boxplots (and qqnorm plots) for each of a series of
groups. It is easy to produce the boxplots or qqplots by groups using
either by() or tapply(), but the moment that I want unique labels for each
boxplot, I seem to be stuck using a for loop to achieve the effect.
For example:
tapply(fstat$femur, fstat$race, boxplot)
by(fstat$femur, fstat$race, boxplot)
gives nicely unlabelled boxplots.
but I'm struggling with how to pass the labelling arguments to either
tapply or by:
e.g.
tapply(fstat$femur, fstat$race, function(x) boxplot(x, main=????))
(nothing obvious comes to mind here that...
2012 Aug 07
1
(no subject)
hi,?
I'm working on a research project where we're looking at the changing resonances in femur bones during hip replacement operations. basically, I've got a spreadsheet with one column listing frequencies in 5Hz bands and 3 columns showing the amplitude of that frequency when the bone is loose, medium to tight (referring to the tension of the reamer/chisel creating a cavity for the hip...