Added API for developer stastics showing domain frequency for each developer #19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The API
get_developer_statsfetches the closed issues, applies the random forest algorithm on them to obtain the domain labels for each of the closed issue. Furthermore, it gets the developer associated with the closed issue from the { "user", "login" } and { "user", "id" } parameters in returned JSON.Then it builds a dataframe in the form:
Which tells us, how much issues, a particular developer has solved on a particular domain. This information is helpful to determine the expertise of a developer. For example, a developer who has solved many issues relating to 'database' can be assumed to be an expert in all issues that pertain to the 'database' label on that particular repository.