Skip to contents

Create a score_data structure from individual score definitions

Usage

create_score_data(...)

Arguments

...

Score definitions created by create_score_definition

Value

A score_data list compatible with compute_scores

Examples

if (FALSE) { # \dontrun{
score_data <- create_score_data(
  create_score_definition("Score1", c("GEP1", "GEP2")),
  create_score_definition("Score2", c("GEP3"), type = "discrete", threshold = 0.5)
)
} # }