gitstats {gitstats} | R Documentation |
Plot github stats
Description
Plots the total number of forks and stars for all repositories of a user or organization.
Usage
gitstats(id = "hadley", type = c("users", "orgs"), max = 20)
Arguments
id |
name of the github user or organization. Default: "Hadley" |
type |
either "users" (default) or "orgs" |
max |
maximum number of repositories to plot. Default: 20, max: 100 |
Author(s)
Scott Chamberlain, Jeroen Ooms
Examples
## Not run:
gitstats(max = 10)
gitstats(max = 40)
gitstats(id = "jeroen", max = 30)
gitstats(id = "ropensci", type = "orgs", max = 70)
## End(Not run)