Probabilities to Columns (3) [String]

Description

Takes a list of candidate objects CANDS and three lists of objects A, B, C. For each object in CANDS, return the probability in each of the lists as an explicit double column.

Input

  • CANDS [STRING]: a list of strings. RESULT will contain these strings
  • A [STRING]: a list of strings from which to take probabilities
  • B [STRING]: a list of strings from which to take probabilities
  • C [STRING]: a list of strings from which to take probabilities

Output

  • RESULT [STRING]: the strings in CANDS, with their probabilities from the lists as double columns

Parameters