I am confused by the order in which I would arrange these two lines with pipes to make the code more readable (and also, this doesn't really need two lines as it is now, obviously). I don't have the piping mindset, yet, and it's hard in the beginning.
I have two tibbles, "ho" and "gw". Both tibbles have the column "S". I want to find the unique elements in "ho" missing in "gw" (honig, "ho not in gw") and store them in order.
honig <- unique(ho$S[!(ho$S %in% gw$S)])
honig <- honig[order(honig)]
I guess I would start with the data and select the column, but then I am already glitching.