I am using the plugin:
http://github.com/karmi/is_taggable
How can I perform simple statistics on my tags, e.g. what's the most used tag? which tags are not used, etc.?
With SQL I would do something like:
select id, count(*) from taggings group by taggable_id;
But I am not seeing how to do this with the plugin.
Thanks!