I want to see what is contributing to the increase in appointments being made by patients. I have two datasets I'm analyzing and I'm not sure if I can use one column to compare with another column. This is a (simplified) example of my data:
Patients
ID | month_joined
A110 | jan 2013
A111 | feb 2013
A112 | april 2013
Appointments
ID | month_of_appt | number_of_appts
A110 | jan 2013 | 2
A110 | feb 2013 | 1
A111 | april 2013 | 5
A112 | dec 2013 | 7
Does it make sense to try and compare the number of appointments per month with the month joined? I want to see if I can answer the question "does the number of patients joining have anything to do with the increase in appointments made?" Is that a bad way of doing the analysis? Should I be looking at something else?