I have a dataset where the order is important and I want to be able to summarize a character column with repeat values without the results being in alphabetical order.
column_A
f
f
b
b
b
d
a
a
c
c
c
e
e
Usual methods return {a,b,c,d,e,f},
I am trying to get {f,b,d,a,c,e}
Please advise.