Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update score metric #34

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions browse/search.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@ The search bar includes an arrow-down button that allows to access the advanced
## How is the package-rank score calculated?

The exact algorithm is a work-in-progress and will change.
Right now it is a combination of:
At the time of writing it includes:

- Number of dependents (that is to say, recursive reverse dependencies);
- Number of Github stars;
- Number of stars on Github;
- Number of unique contributors;
- Commit activity over the last year.
- Commit activity over the last year;
- Downloads per month from CRAN or Bioconductor mirrors;
- Number of files on GitHub that mention ’library(pkgname)'.

The score is a weighted sum of the above, on a log scale. But we plan to improve the algorithm as the project gets more mature, and better data becomes available.
You can browse [scores and metrics for all packages](https://r-universe.dev/packages).

We plan to keep updating the algorithm as R-universe matures and better data becomes available.

## Why is a package sometimes listed twice?

Expand Down
Loading