pplace_to_table {BoSSA} | R Documentation |
Merge the multiclass and the placement table of pplace object
pplace_to_table(pplace, type = "full",run_id=NULL)
pplace |
a pplace object |
type |
the placement type to consider |
run_id |
A vector of run_id to subset |
For the type argument, either "full" or "best" are accepted. Whereas for the "full" type, all the placements are considered, only the best placement for each sequence is considered for the "best" type.
a data frame with the same column names as the mutliclass and placements tables
pierre lefeuvre
data(pplace)
### with every placement
pplace_to_table(pplace)
### keeping only the best placement for each sequence
pplace_to_table(pplace,type="best")