All Projects → woctezuma → hidden-gems

woctezuma / hidden-gems

Licence: MIT license
Ranking of Steam games which favors "hidden gems". Featured in PC Gamer.

Programming Languages

python
139335 projects - #7 most used programming language
Batchfile
5799 projects

Projects that are alternatives of or similar to hidden-gems

scripter
一些脚本和工具
Stars: ✭ 20 (-45.95%)
Mutual labels:  steam
SteamHelper-rs
Interact with Valve's Steam network with this collection of crates.
Stars: ✭ 24 (-35.14%)
Mutual labels:  steam
steamap
Interactive Steam Friends map.
Stars: ✭ 41 (+10.81%)
Mutual labels:  steam
steam community market
Get item prices and volumes from the Steam Community Market using Python 3
Stars: ✭ 24 (-35.14%)
Mutual labels:  steam
steam-cli
Command-line interface to install and execute Steam games
Stars: ✭ 109 (+194.59%)
Mutual labels:  steam
opensvc
The OpenSVC node agent
Stars: ✭ 27 (-27.03%)
Mutual labels:  discovery
IMU-VR-Full-Body-Tracker
Inertial Measurement Unit (IMU) based full body tracker for Steam VR.
Stars: ✭ 46 (+24.32%)
Mutual labels:  steam
meta-package-manager
🎁 a wrapper around all package managers
Stars: ✭ 277 (+648.65%)
Mutual labels:  steam
mindustry-client
A custom client for mindustry supporting v5, v6 and v7! Also known as Foo's client.
Stars: ✭ 90 (+143.24%)
Mutual labels:  steam
SouceModPlugins
My L4D2 SouceMod plugins
Stars: ✭ 29 (-21.62%)
Mutual labels:  steam
steam-design-tools
Steam design tools for Steam profile page. ( Steam 个人资料页设计增强工具 )
Stars: ✭ 30 (-18.92%)
Mutual labels:  steam
ReliefValve
A tool to help manage the Steam client.
Stars: ✭ 16 (-56.76%)
Mutual labels:  steam
DualSenseX
Connect your DualSense Controller, use Adaptive Triggers, Emulate Xbox 360 or DualShock 4 through USB or Bluetooth on PC
Stars: ✭ 699 (+1789.19%)
Mutual labels:  steam
steam-openid-connect-provider
Steam OpenID Connect Identity Provider (IdP)
Stars: ✭ 40 (+8.11%)
Mutual labels:  steam
CreamInstaller
Automatically finds all installed Steam, Epic and Ubisoft games with their respective DLC-related DLL locations on the user's computer, parses SteamCMD, Steam Store and Epic Games Store for user-selected games' DLCs, then provides a very simple graphical interface utilizing the gathered information.
Stars: ✭ 274 (+640.54%)
Mutual labels:  steam
Steam-Auto-Friend
❤️ Node.js based script for steam to accept all incoming friend requests on steam sending one custom welcome message, adding user to selected group and displaying custom playing game status message. Built by @Refloow
Stars: ✭ 23 (-37.84%)
Mutual labels:  steam
monos
cocos (code commons) - auto-include quick-starter prelude & prolog
Stars: ✭ 54 (+45.95%)
Mutual labels:  gems
FrostyFix
A tool to fix Frosty Support with games on platforms other than Origin (EA Desktop, Epic Games Store, Steam)
Stars: ✭ 37 (+0%)
Mutual labels:  steam
gem-check
GemCheck: Writing Better Ruby Gems Checklist
Stars: ✭ 77 (+108.11%)
Mutual labels:  gems
g-steam
steam web api for golang
Stars: ✭ 22 (-40.54%)
Mutual labels:  steam

Hidden Gems

Build status Updates Python 3 Code coverage Code Quality

This repository contains code to compute a ranking of Steam games, based on a score intended to favor "hidden gems".

Ranking of hidden gems at Steam250

Definition

A "hidden gem" is defined as a high-quality game (hence the "gem") which only got little attention (hence "hidden").

Game scoring

The score of a game is defined as the product of a quality measure (its Wilson score) and a decreasing function of a popularity measure (its players total forever).

Regional specifity

The popularity of game genres varies wildly with geography, which leads to different appreciations of a ranking of hidden gems. A statistical analysis of the reviewers' language could allow to personalize rankings of hidden gems with a better account of regional specificity. Our try at building regional rankings appears in compute_regional_stats.py.

Requirements

  • Install the latest version of Python 3.X.

  • Install the required packages:

pip install -r requirements.txt

Usage

  • First, call the Python script create_dict_using_json.py, which will download data through SteamSpy API. A file ending with _steamspy.json will be automatically created at runtime if the file is missing for the current day.
python create_dict_using_json.py
  • Then, call the Python script compute_stats.py to build the ranking by optimizing the free parameter alpha.
python compute_stats.py
  • Finally, call the Python script compute_regional_stats.py to build regional rankings, one per language. In order to estimate the number of players in each region, Steam reviews have to be downloaded through Steam API. Depending on the number of hidden gems displayed in the global ranking, and depending on the number of reviews for each hidden gem, this process may require a decent amount of time.
python compute_regional_stats.py

Results

The most recent results are shown on a wiki.

Few past results are listed below:

  • original ranking, featured on PC Gamer, based on pre-sales data, using players total as a popularity measure.
  • updated ranking, using data from June 30, a week after the Steam summer sales have started.

Perspectives

The ranking of hidden gems is favorably biased towards high-quality games which have not been translated to many languages. To be insensitive to this bias, there are regional rankings of hidden gems. The core of the method is the same, but the data is processed differently so that both the quality and popularity measures are constrained to players who speak the same language. For the quality measure, every review is downloaded, the language tag assigned to the review is taken into account, and the review language is also assessed with an external tool to confirm that the language tag is correct. For the popularity measure, we assume that for any given game, the distribution of players and reviewers is the same with respect to languages.

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].