I want to have stacked barplot inside of matrix. Should I go with ggplot?
My data looks like this:
And I want to have barplot in every matrix. Not like this
ggplot(data = data1,
aes(x = Var1, y = Var2, fill = value)) +
geom_tile()
Stacked barplot for every matrix here
Result something like this: Every variable will be used as barplot inside matrix Result