Have a question about CiviCRM? Get it answered quickly at the new CiviCRM Stack Exchange Q+A siteThis forum was archived on 25 November 2017. Learn more.How to get involved.What to do if you think you've found a bug.
Moreover (and it might well be outside the scope of the GSoC project) it would be super useful to indicate if a difference is statistically significant.For instance, on sid's contact dashboard you have a pie of the split by gender and you see they are 53% of women, you can then select to see only the contacts that have been created last year, it adjusts the gender graph and you can see that you have 55% of women.What is doesn't say is if this 2% is significant or if it's random changes. what it doesn't do either is to make it easy to compare the contacts created this year (48% of women) vs. last year 55%.I don't have a smart solution to solve that, yet.
For more time series based viz then the ability to compare different periods E.G Year on year
SELECT event.id, event.title, COUNT(*),participant.status_id, fee_amount, SUM(fee_amount) from civicrm_event as event INNER JOIN civicrm_participant as participant ON event.id=participant.event_id group by event.id, status_id;
Can you please suggest me what is ideally the number of events an average organization has?
At the same time, what do you think is more important information, number of events of particular kind or number of participants for event of a particular type. I can even put both.
or simply being able to choose two different event ids?