I have a dataset with dates in one field and N/As in another. I created this as a subset of a larger dataset because I need to see whether the number of N/As are from one time period or more evenly distributed across all time.
my data looks like this:
User_id | Date | app_version
001 | 2016-01-03 | <NA>
002 | 2016-03-03 | <NA>
003 | 2016-02-22 | <NA>
004 | 2016-04-15 | <NA>
...
What I'd like to do is plot a line graph with time on the X axis and number of NAs on the Y axis.
Thanks in advance.