I am trying to find the best deal in terms of price/carat from the Diamonds dataset from the plyr package
So I do
new = ddply(diamonds, c("cut", "color", "clarity"), transform, ecart= price/carat - mean(price/carat))
best = ddply(new, c("cut", "color", "clarity"), summarize, which(ecart == min(ecart))
But when I do that I get
head(best)
cut color clarity ..1
1 Fair D I1 4
2 Fair D SI2 49
3 Fair D SI1 39
4 Fair D VS2 9
5 Fair D VS1 2
So the index seem to be takend from the subgroups being made by ddply. Here only the first index, 4, correspond to the global index. if I look up new[2,] it is not of the type Fair, D, VS1 for instance.
Any idea on how I can retrieve the global index position easily ?
How would you for instance, add a id column elegantly ? Is there a better solution ?