How many projects of each team size are listed in Google Code? (05-2011)
Description
This chart shows the number of projects of each team size listed in Google Code.
Visualization
SQL Script
Use the results from the following query to create a temp table.
SELECT datasource_id, unixname, COUNT( dev_name ) AS dev_count
FROM gc_developer_projects
WHERE datasource_id = <current>
GROUP BY unixname;
Use the temp table for the following query.
SELECT dev_count, COUNT(unixname) AS Count
FROM gc_temp
WHERE datasource id = <current>
GROUP BY dev_count
ORDER BY Count DESC, dev_count;
Attachment | Size |
---|---|
05-11-gc-team_size.png | 13.88 KB |
- Log in to post comments