{% set title = "Tenure" %} {% include '_bootstrap_html_head.html'%} {% include 'header.html' %}

Developer Tenure


Basic Statistics

There have been {{ data.get("developers","Unknown")}} developers who've committed {{ data.get("commits", "Unknown") }} times to {{ data.get("repos", "Unknown") }} repos over {{ data.get("days_active","Unknown") }} days ({{ data.get("years_active","Unknown") }} years)

Mean Mode Median Std. Dev. Max tenure (days)
{{ data.get("mean")}} {{ data.get("mode")}} {{ data.get("median")}} {{ data.get("std_dev")}} {{ data.get("max")}}
All of the entries above represents "days" of tenure. Often a tenure of 1 day is a single contribution to a repo, such as a bug fix in an open source project.

Tenure Distribution

{% for my_item in distribution %} {% endfor %} {% for my_item in distribution %} {% endfor %} {% for my_item in active_distribution %} {% endfor %}
-{{ my_item }}
All time ({{data.get("developers")}}){{ distribution.get(my_item,"0") }} %
Active developers ({{data.get("active_devs")}}){{ active_distribution.get(my_item,"0") }} %
"All time" is any developer who's contributed to the repo, where as active developers are those who've committed in the last 90 days (default) but shows their "tenure" or how long they have been active.
{% include '_footer_scripts.html' %}