questionaire | R Documentation |
questionaire()
is a function which calculates scores from a questionaire.
questionaire(df,id,questions,scale,prefix,...)
df |
dataframe. ( |
id |
Column name of participant id ( |
questions |
Column names of ordered list of questions ( |
scale |
name of the questionaire ( |
prefix |
prefix of column names of questionaire scores ( |
... |
additional questionaire specific parameters |
This only calculates the scores for the 34 Non-verbal cognitive score. The questionaire needs to have 34 questions, scale = "PARCA-R"
, and the following additional parameters need to be set:
birthday
| The name of the column for the birthday; if children are born before 37 weeks of gestatoin it is suggested to have corrected age; and then the column should be date of term.
date
| The name of the column for the date of when the participants went through the questionaire.
sex
| The name of the column for the sex of the participants. Male's must be coded as M
and females as F
.
The calculation summarizes both the raw score and the standard score. As per the PARCA-R manual from 2019 and from the protocol from SafeBoosC-III follow-up study Rasmussen et al. 2029 moderate-or-severe cognitive impairment is defined as < -2SD. This corresponds to a standard score below 70.
Using the 19 questions from the CBI it will both calculate score
and group
.
Using setting it can either be the English version (default; score = 'english'
)
or the Danish version (score = 'danish'
). In the English version the Likert-scale
is converted to 100, 75, 50, 25, 0. Here, no more than 3 questions may be missing
in each subscore English CBI.
The groups are based on the average score:
0-25: 'no burnout'
25-50: 'light burnout'
50-75: 'moderate burnout'
75-100: 'severe burnout'
In the Danish score the questions are summed up from 0 to 4 points. Here, all questions must be answered. Danish CBI
The groups are based on the summed score:
0-5: 'no burnout' (0-6 for Work-related burnout)
6-11: 'light burnout' (7-13 for Work-related burnout)
12-17: 'moderate burnout' (14-20 for Work-related burnout)
18+: 'severe burnout' (21+ for Work-related burnout)
Works, but not documented
Works, but not documented. However, used https://www.rand.org/health-care/surveys_tools/mos/36-item-short-form/scoring.html
Not yet documented
Not yet documented
Returns summarised information in dataframe.
## Not run:
df <- df_b[,grepl("ssid|KIDSCREEN52_D_",colnames(df_b))][,c(1:53)]
k52 <- questionaire(df,id = "ssid",
questions=colnames(df)[grepl("KIDSCREEN",colnames(df))],
scale="Kidscreen-52",
setting="proxy")#'
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.