I wonder how I can extract the row name from row number?
x <- data.frame( A = 1:10, B = 21:30 )
rownames( x ) <- sample( LETTERS, 10 )
> x
A B
J 1 21
A 2 22
I 3 23
G 4 24
H 5 25
B 6 26
P 7 27
Z 8 28
O 9 29
R 10 30
> x[ "H",]
A B
H 5 25
I want to find what is the row name of specific row? for example row name of row=3
also which rowname contains the value 30?