I'm trying to output to a graph.
I have an array of NSDictionaries. Each of these dictionaries have an NSDate (objectForKey:@"date") and a value (objectForKey:@"value").
What I want to do is average all the results per day and then order it by date, putting in missing days (the results are all from the last 7 days).
Is there any easy way to do this at all?
Thanks