Displaying 1 result from an estimated 1 matches for "tren".
Did you mean:
then
2008 Apr 15
2
a question of alphabetical order
...9;t affect to the
alphabetical order of vector of strings. I mean, a or ? don't matter for
establishing the alphabetical order.
Nevertheless, while working with R order, here is what I get.
Given a file transport.txt
medio#variable
avi?n#34
barco#33
bicicleta#3
?ngulo#37
cami?n#54
coche#23
tren#67
> toPlot <-
read.csv("~/Desktop/Workplace/transport.txt",header=TRUE,sep="#")
> toPlot[order(toPlot$medio),]
medio variable
1 avi?n 34
2 barco 33
3 bicicleta 3
5 cami?n 54
6 coche 23
7 tren 67
4 ?n...