Revert the ScoreTable back to FrequencyTable object.
strip_ScoreTable.Rd
Revert the ScoreTable back to FrequencyTable object.
Examples
# having a ScoreTable object
st <- ScoreTable(FrequencyTable(HEXACO_60$HEX_X), TANINE)
#> ℹ There are missing raw score values between minimum and maximum raw scores.
#> They have been filled automatically.
#> No. missing: 2/36 [5.56%]
class(st)
#> [1] "ScoreTable"
# revert it back to the FrequencyTable
ft <- strip_ScoreTable(st)
class(ft)
#> [1] "FrequencyTable"