please do forgive me for potentially asking a really silly question but its really important that the data I am representing in my waffle chart is ordered according to the input of my vector.
I am really struggling to force the graph to not reorder into descending order. Any feedback is welcome.
library(waffle)
x <- c(A = 5, B = 5, C = 2, D = 3)
waffle(x, rows=5)
Obviously the code above is super basic but I am actually learning this from 0 due to the purpose of the code.
Thanks in advance!