I\'ve endlessly looked for this and somehow nothing has solved this simple problem.
I have a dataframe called Prices in which there are 4 columns, one of wh
Another tidyverse solution and I think the simplest one is:
tidyverse
df %>% map_df(rev)
or using just purrr::map_df we can do map_df(df, rev).
purrr::map_df
map_df(df, rev)