Modify Data - Merge 10 Point Scales Into 3 Categories
Jump to navigation
Jump to search
Q Technical Reference
Q Technical Reference
Q Technical Reference
Q Technical Reference
Q Technical Reference > Setting Up Data > Creating New Variables
Q Technical Reference > Setting Up Data > Creating New Variables
Q Technical Reference > Updating and Automation > Automation Online Library
Q Technical Reference > Updating and Automation > JavaScript > QScript > QScript Examples Library
Q Technical Reference > Updating and Automation > JavaScript > QScript > QScript Examples Library > QScript Online Library
This QScript creates merges the bottom 3, middle 4 and top 3 categories of 10-point scales.
Example
Technical details
This QScript:
- Searches through all the questions in the project that contain 10 non-missing categories where the lowest scale point has a Value of 1 and the highest has 10.
- Asks you if you want to consider questions whose categories suggest that they may be scale questions .
- Warns you if any of your selected questions contain categories that look like 'Don't Know' options (and hence would likely not be useful to combine with the top k categories).
- Merges the categories.
- Produces a new folder in your Report showing which questions have been changed, and, if relevant, any problem questions.
How to apply this QScript
- Start typing the name of the QScript into the Search features and data box in the top right of the Q window.
- Click on the QScript when it appears in the QScripts and Rules section of the search results.
OR
- Select Automate > Browse Online Library.
- Select this QScript from the list.
Customizing the QScript
This QScript is written in JavaScript and can be customized by copying and modifying the JavaScript.
Customizing QScripts in Q4.11 and more recent versions
- Start typing the name of the QScript into the Search features and data box in the top right of the Q window.
- Hover your mouse over the QScript when it appears in the QScripts and Rules section of the search results.
- Press Edit a Copy (bottom-left corner of the preview).
- Modify the JavaScript (see QScripts for more detail on this).
- Either:
- Run the QScript, by pressing the blue triangle button.
- Save the QScript and run it at a later time, using Automate > Run QScript (Macro) from File.
Customizing QScripts in older versions
JavaScript
includeWeb('QScript Utility Functions');
includeWeb('QScript Questionnaire Functions');
includeWeb('QScript Selection Functions');
includeWeb('QScript Value Attributes Functions');
includeWeb('QScript Functions to Generate Outputs');
includeWeb('QScript Data Reduction Functions');
includeWeb('QScript Functions for Combining Categories');
includeWeb('QScript Functions for Processing Arrays');
includeWeb('JavaScript Utilities');
var mergings = [
{name: "Bottom 3", values: [1, 2, 3] },
{name: "Middle 4", values: [4, 5, 6, 7] },
{name: "Top 3", values: [8, 9, 10]}
];
var merge_message = "(Bottom 3, Middle 4, Top 3)"
if (!mergeScales(mergings, merge_message))
log("QScript Cancelled");
else
conditionallyEmptyLog("QScript Finished");
Prior to the 15th of December, 2015, this page was known as Modifying Rows and Columns - Merge 10 Point Scales Into 3 Categories
See also
- QScript for more general information about QScripts.
- QScript Examples Library for other examples.
- Online JavaScript Libraries for the libraries of functions that can be used when writing QScripts.
- QScript Reference for information about how QScript can manipulate the different elements of a project.
- JavaScript for information about the JavaScript programming language.
- Table JavaScript and Plot JavaScript for tools for using JavaScript to modify the appearance of tables and charts.
Q Technical Reference
Q Technical Reference
Q Technical Reference
Q Technical Reference
Q Technical Reference > Setting Up Data > Creating New Variables
Q Technical Reference > Setting Up Data > Creating New Variables
Q Technical Reference > Updating and Automation > Automation Online Library
Q Technical Reference > Updating and Automation > JavaScript > QScript > QScript Examples Library
Q Technical Reference > Updating and Automation > JavaScript > QScript > QScript Examples Library > QScript Online Library