get_stargazers.RdGet the history of when a repository was starred and return it as a tibble.
get_stargazers(org = "NOAA-FIMS", repo = "FIMS")A tibble with 24 columns is returned. The first twenty columns are from the JSON data that is returned from the GitHub API and the next four columns are added internally, specifying the GitHub organization (org), the GitHub repository (repo), the date the star was added, and the days since the first star was added to the repository compared when this star was added (day).
stars <- get_stargazers("NOAA-FIMS", "FIMS")
plot(
x = stars[["day"]],
y = stars[["cumulative_stars"]],
type = "l",
xlab = "Day since first star",
ylab = "Cumulative stars"
)