my_queryData frame1
quarter year value
q1 2012 100
q3 2013 200
q4 2014 400
q4 2015 250
q3 2014 400
Data frame 2
quarter year value
q1 2014 100
q3 2012 200
q4 2015 400
q4 2012 250
q3 2015 400
I want to compare these two by plotting in r
.Can you please suggest here?
Note: I have tried different ways,but no luck
plot(DF1$fy,DF1$value,
main ="Distribution of Assets in quarters across years",
xlab = 'years',ylab = 'vales',type='l')