User Tools

Site Tools


oss-health-metrics:metrics:transparency

This is an old revision of the document!


Transparency

1. Acronym

2. Alternate Names

3. Classification

Community Health

4. Description

Number of comments per issue. Discussion is occuring openly - could also indicate level of agreement.

Pseudo Code

Visualization

Interpretation

5. Example Implementation

SELECT avg(avg_num_comments), project_name
FROM
(
	SELECT count(comment_id) as avg_num_comments, projects.name as project_name, projects.id as project_id
	FROM msr14.issue_comments
		join issues on issue_comments.issue_id = issues.id
		join projects on issues.repo_id = projects.id
	GROUP BY projects.id, issues.id
) as comments_per_issue
GROUP BY project_id

6. Data Exchange Format

7. Known Implementations

8. References to Academic Literature

9. Internet References

10. Contributors

Anna Buhman

oss-health-metrics/metrics/transparency.1493231178.txt.gz · Last modified: 2017/04/26 18:26 by abuhman