fct_to_excel_values.Rd
A function to apply before export values to excel
fct_to_excel_values(x)
A factor
f <- factor(c("b", "b", "a", "c", "c", "c")) fct_to_excel_values(f) #> [1] 2) b 2) b 1) a 3) c 3) c 3) c #> Levels: 1) a 2) b 3) c