Description Usage Arguments Details Value References Examples
The Western Ontario and McMaster Universities Osteoarthritis Index (WOMAC) is a widely used, proprietary set of standardized questionnaires used by health professionals to evaluate the condition of patients with osteoarthritis of the knee and hip, including pain, stiffness, and physical functioning of the joints. (Wikipedia)
1 2 3 4 5 6 7 | scoring_womac(
data,
items = 1:24,
keep = TRUE,
nvalid = list(pain = 5, stiff = 2, physical = 14),
digits = NULL
)
|
data |
a |
items |
A character vector with the WOMAC item names ordered from 1 to 24,
or a numeric vector indicating the column numbers of the WOMAC items in |
keep |
Logical, whether to keep the single items and whether to return variables containing the number of non-missing items on each scale for each respondent. The default is TRUE. |
nvalid |
A numeric value indicating the number of non-missing items required for score calculations. The defaults are:
|
digits |
Integer of length one: value to round to. No rounding by default. |
Number of items:
24
Item range:
0 to 4
Reverse items:
none
Score range:
Pain
0 to 20
Stiffness
0 to 8
Physical Function
0 to 68
Cut-off-values:
none
Minimal clinically important difference:
none
Treatment of missing values:
unknown
The function returns 7 variables:
nvalid.womac.pai:
Number of valid values of Pain Scale (MAX=5)
nvalid.womac.sti:
Number of valid values of Stiffness Scale (MAX=2)
nvalid.womac.phy:
Number of valid values of Physical Function Scale (MAX=17)
score.womac.pai:
WOMAC Pain Score
score.womac.sti:
WOMAC Stiffness Score
score.womac.phy:
WOMAC Physical Function Score
score.womac.glo:
WOMAC Global Score
Quintana et al (2005) (doi: 10.1016/j.joca.2005.06.012)
Link to questionnaire (https://www.yrmc.org/docs/default-source/medservices/womac-osteoarthritis-index.pdf?sfvrsn=0)
1 2 3 4 5 6 7 | ## Not run:
library(dplyr)
library(qscorer)
df.womac <- simulate_items(num_cols = 24, item_range = 0:4, item_name = "womac")
scoring_womac(df.womac, items = 2:25, keep = FALSE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.