concatDict {XNAString} | R Documentation |
Concatenate HELM-symbol custom dictionary with built-in HELM-symbol dictionary (xna_dictionary)
concatDict( custom_dict, default_dict = xna_dictionary, helm_colname = "HELM", type_colname = "type", symbol_colname = "symbol" )
custom_dict |
custom HELM-symbol dictionary |
default_dict |
built-in HELM-symbol dictionary (xna_dictionary) |
helm_colname |
helm column name in custom dictionary |
type_colname |
type column name in custom dictionary |
symbol_colname |
symbol column name in custom dictionary |
data.table
my_dict <- data.table::data.table( HELM = c("[[B]]"), type = c("base"), symbol = c("B") ) concatDict(my_dict)