My R data.frame df looks like:
Name Amount 1 "A" 150 2 "B" 120 3 "C" "NA" 4 "D" 160 . . . I want to get the Name and Amount row when I do something like min(df$Amount).
That gets me the minimum number in the Amount column, but how do I get the Name in that same row? Or the entire row for that matter?
Name should be "B" in this case.
Similar to Select * Where Amount = min(Amount)
What is the best way to do this in R?