If a player is called lambda, B, U1, U2, U3 or S the name is skipped in the end result.
If keep_par_name=T the result is correct.
The solution would need to change how the renaming of the parameters works in the function replace_parameter_index_with_names in bpc_helpers_index.R
Reproducible example:
test_bt <- load_testdata('test_bt')
m1 <- bpc(
data = test_bt,
player0 = 'player0',
player1 = 'player1',
result_column = 'y',
model_type = 'bt',
solve_ties = 'random',
win_score = 'higher',
iter = 1000,
warmup = 300,
show_chain_messages = F,
seed = 8484
)
get_parameters(m1,keep_par_name = F)
If a player is called lambda, B, U1, U2, U3 or S the name is skipped in the end result.
If keep_par_name=T the result is correct.
The solution would need to change how the renaming of the parameters works in the function
replace_parameter_index_with_namesinbpc_helpers_index.RReproducible example: