In a quantitative content analysis, coders have to classify several different units (e.g. newspaper articles or social media posts) using the same categories. This can be done classically in an Excel spreadsheet … but you can also use SoSci Survey as a form tool for coding. SoSci Survey has some practical advantages:
Tip: For categories with a large number of characteristics, use drop-down selection questions or Suggesting Text Input, so that coders can enter the classification efficiently.
This guide describes the use case in which a small number of coders are to code a large number of posts from a social media platform. The focus here is on the automated delivery of the posts to the coders.
Tip: For coding with a large number of coders (crowd working e.g. via MTurk), you would rather use a Random Generator to select the unit.
In the use case mentioned above, the procedure is as follows:
The data for the coding is stored in SoSci Survey as follows. In addition to the question type Internal Variables, the function Database for Contents is used here, which makes structured content (the posts and the assignment of coders to posts) available in the background.
A question of the type Internal Variables provides four variables for the organizational information in the data set, specifically the following variables. In the following example, the question uses the identifier CX01.
In the first variable, the Type of Content is set to “Numeric codes” and the names of the coders are entered as codes.
1 = Anna Alpha 2 = Bernhard Beta 3 = Christine Gamma 4 = Daniel Delta
The fourth variable is optional; in this example, it stores the content of the social media post. This can simplify the evaluation slightly, especially when checking the correct coding.
In this use case, the social media posts are pure text content (images or other media files would also be possible based on file names). During the scraping process, the posts were assigned a unique ID, which should also appear in the data record. A P
is placed in front of this ID to store the content. The post with the ID 1 is therefore given the database key P1
. This prefix is necessary to distinguish it from other categories of entries (see below) in the content database.
Tip: The list is prepared using Excel, the prefix can be added here using the CHAIN()
function, for example.
The Excel table for the post content would look like this.
The first column contains (only) the database keys for the Database for Contents. The second column contains the texts of the posts that will later be displayed to the coders. Further information (e.g. the file name of an image) could be added in other columns.
The XLSX file is read in in SoSci Survey under Special Features → Database for Contents with Read file.
The first column is selected as the database key.
Tip: In this example, the posts have numerical, sequential IDs. However, alphanumeric, non-sequential IDs can also be used without any problems.
In the application example, the posts are to be distributed among the coders in such a way that each post is coded by two people. Another Excel table was created for this purpose. The table contains two large blocks one below the other, in which each post ID occurs once (because each post is to be coded twice).
The IDs of the coders were then added to the second column. In the first block, the IDs were entered in regular sequence and the block was then copied to all other lines.
In the second block, the IDs were entered in different sequences (2,3,4,1,3,4,1,2) and copied so that different combinations of two coders each take care of one post across the entire table.
The entire table was then randomly shuffled (an additional column with the content =RANDOM()
is helpful for this), then sorted according to the column with the Coder ID, and then consecutive numbers for the posts of each coder were entered in a third column Step.
A database key is also created in a fourth column “Key”. This is made up of the prefix “C”, the ID of the encoder, a separator (in this case a hyphen) and the consecutive number from the third column.
This XLSX file is also imported into the database for content, with the “Key” column again serving as the database key.
This means that all information is stored in SoSci Survey to display the posts one after the other for coding. In addition, 3 texts are created in the List of Questions, which later serve as error messages in the questionnaire. The option “Warning” is selected as Display in all texts.
A questionnaire is now created under Compose questionnaire, which initially contains a lot of PHP code on page 1 (Introduction to PHP).
// Importing the encoder ID from the URL $coder = (int)reference(); if (!$coder) { // Display error message if no encoder ID was transferred text('CX02'); buttonHide(); pageStop(); } put('CX01_01', $coder); // Read consecutive number $key = 'A'.$coder; $info = dbGet($key); if (!$info) { $num = 0; } else { $num = (int)$info[0]; } // We now code the next (consecutive) number put('CX01_02', $num + 1); // Determine post ID from the Encoder/Posts table $key = 'C'.$coder.'-'.value('CX01_02'); $info = dbGet($key); if (!$info) { show('CX03', ['%num%' => $key]); buttonHide(); pageStop(); } $postID = $info[2]; put('CX01_03', $postID); // Retrieve post (content) $info = dbGet('P'.$postID); if (!$info) { show('CX04', ['%post%' => $postID]); buttonHide(); pageStop(); } $html = $info[0]; put('CX01_04', $html);
This code does the following:
dbGet()
therefore searches for an entry with the key “P13”.For the sake of simplicity, the questionnaire saves the text of the post in an internal variable in the data set. This allows the content to be displayed on this and subsequent pages with the following PHP code:
// Show posting html( '<div style="border: 1px solid #666666; border-radius: 1em; padding: 1em 2em; margin: 2em 0;">'. htmlspecialchars(value('CX01_04')). '</div>' );
Below this PHP code, only the questions that are used for coding need to be added to the questionnaire.
After the pages with the questions (before the “last page”), another page is inserted which only contains the following PHP code. This page is used to automatically call up the next posting for coding once coding is complete.
// Save incremented consecutive number $coder = value('CX02_01'); $num = value('CX02_02'); $key = 'A'.$coder; dbSet($key, $num); // Redirect to the next coding redirect('?r='.$coder);
Now the coders still need individual links that the questionnaire uses to recognize which coder wants to code something. To do this, a reference is appended to the link to the questionnaire. For example, if the normal link to the questionnaire is www.soscisurvey.de/coding/
, the coders would receive the following links (URL to the Questionnaire).
www.soscisurvey.de/coding/?r=1
www.soscisurvey.de/coding/?r=2
www.soscisurvey.de/coding/?r=3
www.soscisurvey.de/coding/?r=4
Test the function of the questionnaire with these links. If everything works correctly, then delete the entries for the keys “A1” to “A4” (the counters for the coding) under Special Features → Database for Contents with Delete Entries so that the links mentioned above start with the first post again.