I am looking for a suggestion please regarding sorting a data.frame
with alphanumerical components:
Let's assume we have:
A = c("A1","A10","A11","A2")
B = c(1,2,3,4)
C = data.frame(A,B)
How could I sort C data.frame
in such a way that we have at the end :
C$A
in the order : "A1", "A2", "A10", "A11".