Hi,
Example data:
tibble::tribble(
~Item, ~Description,
123L, "something1",
123L, "something1",
123L, "something1",
321L, "something2",
321L, "something2",
321L, "something2"
)
I am trying to graph on x axis the unique descriptions, in this case a separate bar for something1 and something2
And on y axis the count of unique items, in this case bar for both of them should be at one as they each have one item.