do you mean you want to sort your data frame. or pull out a vector of the sorted values of the column ?
arrange() is the function in the tidyverse/dplyr package to sort a frame by a column(s),
in base r for a sorted vector sort(mydf$gerne) assuming your frame is called mydf
for unique values sort(unique(mydf$gerne))