I have a 2 columns of a data frame say
t1=data.frame(c1=c("Y","N","U","Y","N","U"),c2=c("Y","N","N","U","U","Y"))
I want to create a bar plot with both columns on the x axis and the number of occurrences of Y,N and U as 3 separate bars for each of the columns. Thank you!

