Title: | Useful datasets used in IQUIZOO workflow |
---|---|
Description: | There will be many dependent dataset for an IQUIZOO workflow to work, such as game configurations of pre-processing functions, abbreviation names, etc. Use a data package to distribute these will be a very great choice. |
Authors: | Liang Zhang [aut, cre] |
Maintainer: | Liang Zhang <[email protected]> |
License: | GPL (>= 3) |
Version: | 2024.07.14 |
Built: | 2024-11-11 04:29:27 UTC |
Source: | https://github.com/psychelzh/data.iquizoo |
The alternative names for all the games supported by IQUIZOO.COM.
game_info
game_info
A data frame with 350 rows of the following variables:
Game id, a 64-bit integer.
Game name in Chinese, matching that in the database.
Game version name, matching that in the database.
English game name, added by researchers (esp. by me).
English game name abbreviated, added by researchers (esp. by me).
Parallel form game id. If no parallel form, this
will be NA
.
Match specific piece of information of games
match_info(x, to, from = "game_id", fail_on_missing = TRUE)
match_info(x, to, from = "game_id", fail_on_missing = TRUE)
x |
The known information of games. |
to |
The name of the column of the information to be matched. |
from |
The name of the column of the known information. |
fail_on_missing |
Whether to stop if some of the information is not matched. |
The matched information.
These complex parameters are stored internally, and users must retrieve them through this function.
merge_preproc( games, ..., filter_only = FALSE, rm_tagged = FALSE, name_key = "game_id" )
merge_preproc( games, ..., filter_only = FALSE, rm_tagged = FALSE, name_key = "game_id" )
games |
A data.frame contains the games to match parameters. |
... |
Additional arguments passed to |
filter_only |
Whether to perform filtering only, i.e., keep only the matched games. |
rm_tagged |
Whether to remove games with a tagged pre-processing
function. Default is |
name_key |
The name of the column to match the games. |
A data.frame added pre-processing parameters. Note if there is no
match for a game, the matched parameters are empty vectors (e.g., NULL
).