First ever query here! Hope to get a good response. I am trying to plot the following table in R.
dfr <- data.frame (
Member = c("Old", "New", "Old", "New", "Old", "New", "Old", "New"),
Years = c(2005,2005, 2006,2006,2013,2013,2014,2014),
Trust = c(42.3, 56.70, 45.30, 61.40, 26.80, 45.50, 33.5, 50.60), # these are percentages
mistrust = c(45.50, 28.50, 42, 25.20, 62.70, 42.90, 54.20, 34.20))
Just so you know, the member means old and new EU member states, and years are the year I am interested to know the level of trust each group of new and old EU members had in the EU.
Question here is I want to plot all four variables, where the graph shows how Trust and/or mistrust by different members (new and old) varies between four different years.
I hope it makes sense what I am asking!
Thanks