I have a question regarding the use of the function order (), I have the following data.frame and I am using the following statement but I can not sort the column, and can not find the error. I want this column Tag_PHASE ordered from lowest to highest.
Tag_PHASE Num_EPC
1 101.0 1
2 126.0 1
3 70.0 1
4 73.0 1
5 78.0 3
6 81.0 1
7 84.0 1
8 87.0 1
9 90.0 1
10 92.0 3
a<-DF_TAG_PHASE_EPC_counter[order(DF_TAG_PHASE_EPC_counter$Tag_PHASE), ]