Description
This chart shows the top content licenses used by projects in Google Code. There were 197,465 projects that did not list a content license.
Visualization
SQL Script
SELECT gc.content_license AS License, COUNT(proj_name) AS COUNT
FROM gc_projects gc
WHERE gc.datasource_id = <current>
GROUP BY License
ORDER BY Count DESC;