Skip to contents

Revert the ScoreTable back to FrequencyTable object.

Usage

strip_ScoreTable(x)

Arguments

x

a ScoreTable 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"