User Tools

Site Tools


oss-health-metrics:metrics:issues-submitted-closed

This is an old revision of the document!


Issues submitted/closed

1. Acronym

2. Alternate Names

3. Classification

4. Description

Issues submitted vs. issues closed

Visualization

Interpretation

5. Known Implementations

6. Data Source

GHTorrent

7. Pseudo Code/Query

Total issues by project

select count(issues.id) as total_issues, projects.name as project_name, projects.url as project_url from
issues join projects
on issues.repo_id = projects.id
group by projects.id

Total closed issues by project

select count(distinct issues.id) as total_issues, projects.name as project_name, projects.url as project_url 
from    
issues join projects
on issues.repo_id = projects.id
join issue_events
on issue_events.issue_id = issues.id
where issue_events.action = 'closed'
group by projects.id

8. Data Exchange Format

9. References to Academic Literature

10. Internet References

11. Contributors

Anna Buhman

oss-health-metrics/metrics/issues-submitted-closed.1491850464.txt.gz · Last modified: 2017/04/10 18:54 by abuhman