I have a data as:
data = {{0.1, 3}, {0.1, -2}, {0.1, -1}, {0.1, 4}, {0.1,5}, {0.2, -2}, {0.2, -7}, {0.2, -4}, {0.2, 3}, {0.2,3}, {0.3, -8}, {0.3, 4}, {0.3, 2}, {0.3, 1}, {0.3, 2}};
I want to use of plot markers (in which have been defined some markers), for plotting my data. But unfortunately because, my data is not arranged as defined in plot markers I could not access to my goal. I want to have a plot with a specified similar symbol (and specified similar color) for the lowest value of second quantity in pair: {0.1, -2},{0.2,-7},{0.3,-8} and for the second lowest values: another specified symbol and color (but similar):{0.1,-1},{0.2,-4},{0.3,1}. Although I know a one way is rearrange the data to a new arrangement saving suitable form to plot it but since there is a repeating element same as {0.3,2}(as it repeats two times) I could not able to plot desire situation.
