In this format, each element has a separate column, and each row contains the ratings for one construct.
It is a common way to represent grid data and looks like this.
1 | element_1 | element_2 | element_3 | element_4 | 5 | preferred |
left_pole_1 | 1 | 5 | 3 | 4 | right_pole_1 | left |
left_pole_2 | 3 | 1 | 1 | 3 | right_pole_2 | right |
left_pole_3 | 4 | 2 | 5 | 1 | right_pole_3 | NA |
The columns names contains the minimum of the rating scale (1
), the names of the elements (element_1
to
element_4
), the maximum of the rating scale (5
), and optionally the column preferred
, indicating the preferred
pole. Each row contains the constructs entries (left pole, ratings, right pole, preferred pole). The preferred pole
must be one of left
, right
, none
, NA
(see preferredPoles()
). See sample dataframe df_element_columns.