scoreFACIT_D: Score the FACIT-D

Description Usage Arguments Details Value Note References Examples

View source: R/sx-scoreFACIT_D.R

Description

Generates all of the scores of the Functional Assessment of Chronic Illness Therapy - Diarrhea (FACIT-D, v4) from item responses.

Usage

1
scoreFACIT_D(df, updateItems = FALSE, keepNvalid = FALSE)

Arguments

df

A data frame with the FACIT-D items, appropriately-named.

updateItems

Logical, if TRUE any original item that is reverse coded for scoring will be replaced by its reverse coded version in the returned data frame, and any values of 8 or 9 will be replaced with NA. The default, FALSE, returns the original items unmodified.

keepNvalid

Logical, if TRUE the function returns an additional variable for each of the returned scale scores containing the number of valid, non-missing responses from each respondent to the items on the given scale. If FALSE (the default), these variables are omitted from the returned data frame.

Details

Given a data frame that includes all of the FACIT-D (Version 4) items as variables, appropriately named, this function generates all of the FACIT-D scale scores. It is crucial that the item variables in the supplied data frame are named according to FACT conventions. For example, the first physical well-being item should be named GP1, the second GP2, and so on. Please refer to the materials provided by http://www.facit.org for the particular questionnaire you are using. In particular, refer to the left margin of the official questionnaire (i.e., from facit.org) for the appropriate item variable names.

Value

The original data frame is returned (optionally with modified items if updateItems = TRUE) with new variables corresponding to the scored scales. If keepNvalid = TRUE, for each scored scale an additional variable is returned that contains the number of valid responses each respondent made to the items making up the given scale. These optional variables have names of the format SCALENAME_N. The following scale scores are returned:

PWB

Physical Well-Being subscale

SWB

Social/Family Well-Being subscale

EWB

Emotional Well-Being subscale

FWB

Physical Well-Being subscale

FACTG

FACT-G Total Score (i.e., PWB+SWB+EWB+FWB)

ADS

Diarrhea subscale

FACIT_D_TOTAL

FACIT-D Total Score (i.e., PWB+SWB+EWB+FWB+ADS)

FACIT_D_TOI

FACIT-D Trial Outcome Index (e.g., PWB+FWB+ADS)

Note

Keep in mind that this function (and R in general) is case-sensitive.

All variables should be in numeric or integer format.

This scoring function expects missing item responses to be coded as NA, 8, or 9, and valid item responses to be coded as 0, 1, 2, 3, or 4. Any other value for any of the items will result in an error message and no scores.

Some item variables are reverse coded for the purpose of generating the scale scores. The official (e.g., from http://www.facit.org) SAS and SPSS scoring algorithms for this questionnaire automatically replace the original items with their reverse-coded versions. This can be confusing if you accidentally run the algorithm more than once on your data. As its default, scoreFACIT_D DOES NOT replace any of your original item variables with the reverse coded versions. However, for consistentcy with the behavior of the other versions on http://www.facit.org, the updateItems argument is provided. If set to TRUE, any item that is supposed to be reverse coded will be replaced with its reversed version in the data frame returned by scoreFACIT_D.

References

FACIT-D Scoring Guidelines, available at http://www.facit.org

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## Setting up item names for fake data
G_names <- c(paste0('GP', 1:7),
             paste0('GS', 1:7),
             paste0('GE', 1:6),
             paste0('GF', 1:7))
AC_names <- c('C3', 'ITF1', 'ITU2', 'D1', 'D2', 'D3', 'D4', 'D5', 'D6', 'ITF3', 'ITF5')
itemNames <- c(G_names, AC_names)
## Generating random item responses for 8 fake respondents
set.seed(6375309)
exampleDat <- t(replicate(8, sample(0:4, size = length(itemNames), replace = TRUE)))
## Making half of respondents missing about 10% of items,
## half missing about 50%.
miss10 <- t(replicate(4, sample(c(0, 9), prob = c(0.9, 0.1),
    size = length(itemNames), replace = TRUE)))
miss50 <- t(replicate(4, sample(c(0, 9), prob = c(0.5, 0.5),
    size = length(itemNames), replace = TRUE)))
missMtx <- rbind(miss10, miss50)
## Using 9 as the code for missing responses
exampleDat[missMtx == 9] <- 9
exampleDat <- as.data.frame(cbind(ID = paste0('ID', 1:8),
    as.data.frame(exampleDat)))
names(exampleDat) <- c('ID', itemNames)

## Returns data frame with scale scores and with original items untouched
scoredDat <- scoreFACIT_D(exampleDat)
names(scoredDat)
scoredDat
## Returns data frame with scale scores, with the appropriate items
## reverse scored, and with item values of 8 and 9 replaced with NA.
## Also illustrates the effect of setting keepNvalid = TRUE.
scoredDat <- scoreFACIT_D(exampleDat, updateItems = TRUE, keepNvalid = TRUE)
names(scoredDat)
## Descriptives of scored scales
summary(scoredDat[, c('PWB', 'SWB', 'EWB', 'FWB', 'FACTG',
                      'ADS', 'FACIT_D_TOTAL', 'FACIT_D_TOI')])

Example output

 [1] "ID"            "GP1"           "GP2"           "GP3"          
 [5] "GP4"           "GP5"           "GP6"           "GP7"          
 [9] "GS1"           "GS2"           "GS3"           "GS4"          
[13] "GS5"           "GS6"           "GS7"           "GE1"          
[17] "GE2"           "GE3"           "GE4"           "GE5"          
[21] "GE6"           "GF1"           "GF2"           "GF3"          
[25] "GF4"           "GF5"           "GF6"           "GF7"          
[29] "C3"            "ITF1"          "ITU2"          "D1"           
[33] "D2"            "D3"            "D4"            "D5"           
[37] "D6"            "ITF3"          "ITF5"          "PWB"          
[41] "SWB"           "EWB"           "FWB"           "FACTG"        
[45] "ADS"           "FACIT_D_TOTAL" "FACIT_D_TOI"  
   ID GP1 GP2 GP3 GP4 GP5 GP6 GP7 GS1 GS2 GS3 GS4 GS5 GS6 GS7 GE1 GE2 GE3 GE4
1 ID1   3   3   1   2   2   9   0   9   2   1   1   9   0   2   0   2   0   2
2 ID2   4   3   9   4   2   2   3   1   2   1   1   0   3   4   0   0   3   3
3 ID3   0   2   4   0   2   2   2   1   0   0   3   3   9   2   2   1   0   4
4 ID4   2   4   3   3   1   1   1   4   1   2   0   2   1   2   2   2   3   9
5 ID5   2   9   2   3   9   9   9   9   3   9   9   9   9   9   9   0   1   9
6 ID6   9   3   0   9   0   9   0   2   2   9   3   9   9   9   0   9   9   1
7 ID7   9   9   1   9   2   9   1   0   9   9   9   2   1   9   9   0   9   9
8 ID8   0   9   4   4   9   9   9   9   0   2   9   4   9   3   0   4   0   0
  GE5 GE6 GF1 GF2 GF3 GF4 GF5 GF6 GF7 C3 ITF1 ITU2 D1 D2 D3 D4 D5 D6 ITF3 ITF5
1   4   3   0   3   2   0   1   2   2  4    2    1  9  3  0  4  4  4    3    0
2   3   2   0   2   9   9   3   4   4  0    0    3  3  3  2  3  3  2    3    0
3   3   3   0   9   1   1   2   3   4  4    9    1  1  2  9  4  0  3    2    3
4   4   2   1   1   4   3   4   2   0  1    0    9  1  1  0  0  1  1    1    1
5   9   9   9   4   4   9   9   9   9  9    1    4  3  9  9  0  0  2    0    9
6   1   0   3   9   2   9   0   0   9  2    9    9  3  0  2  9  9  9    9    9
7   4   9   0   1   9   9   3   9   4  9    9    3  9  9  9  9  1  9    3    1
8   9   0   9   4   2   9   9   3   0  4    0    4  9  9  0  2  9  9    2    9
     PWB   SWB  EWB    FWB  FACTG    ADS FACIT_D_TOTAL FACIT_D_TOI
1 15.167  8.40 13.0 10.000 46.567 20.900        67.467      46.067
2  7.000 12.00  9.0 18.200 46.200 18.000        64.200      43.200
3 16.000 10.50  9.0 12.833 48.333 24.444        72.777      53.277
4 13.000 12.00  8.4 15.000 48.400 34.100        82.500      62.100
5     NA    NA   NA     NA     NA 28.286            NA          NA
6 22.750    NA 21.0  8.750     NA     NA            NA          NA
7     NA    NA   NA 14.000     NA     NA            NA          NA
8     NA 15.75 24.0 15.750     NA 29.333            NA          NA
 [1] "ID"              "GP1"             "GP2"             "GP3"            
 [5] "GP4"             "GP5"             "GP6"             "GP7"            
 [9] "GS1"             "GS2"             "GS3"             "GS4"            
[13] "GS5"             "GS6"             "GS7"             "GE1"            
[17] "GE2"             "GE3"             "GE4"             "GE5"            
[21] "GE6"             "GF1"             "GF2"             "GF3"            
[25] "GF4"             "GF5"             "GF6"             "GF7"            
[29] "C3"              "ITF1"            "ITU2"            "D1"             
[33] "D2"              "D3"              "D4"              "D5"             
[37] "D6"              "ITF3"            "ITF5"            "PWB_N"          
[41] "SWB_N"           "EWB_N"           "FWB_N"           "FACTG_N"        
[45] "PWB"             "SWB"             "EWB"             "FWB"            
[49] "FACTG"           "ADS_N"           "FACIT_D_TOTAL_N" "ADS"            
[53] "FACIT_D_TOTAL"   "FACIT_D_TOI"    
      PWB             SWB             EWB             FWB       
 Min.   : 7.00   Min.   : 8.40   Min.   : 8.40   Min.   : 8.75  
 1st Qu.:13.00   1st Qu.:10.50   1st Qu.: 9.00   1st Qu.:11.42  
 Median :15.17   Median :12.00   Median :11.00   Median :14.00  
 Mean   :14.78   Mean   :11.73   Mean   :14.07   Mean   :13.50  
 3rd Qu.:16.00   3rd Qu.:12.00   3rd Qu.:19.00   3rd Qu.:15.38  
 Max.   :22.75   Max.   :15.75   Max.   :24.00   Max.   :18.20  
 NA's   :3       NA's   :3       NA's   :2       NA's   :1      
     FACTG            ADS        FACIT_D_TOTAL    FACIT_D_TOI   
 Min.   :46.20   Min.   :18.00   Min.   :64.20   Min.   :43.20  
 1st Qu.:46.48   1st Qu.:21.79   1st Qu.:66.65   1st Qu.:45.35  
 Median :47.45   Median :26.36   Median :70.12   Median :49.67  
 Mean   :47.38   Mean   :25.84   Mean   :71.74   Mean   :51.16  
 3rd Qu.:48.35   3rd Qu.:29.07   3rd Qu.:75.21   3rd Qu.:55.48  
 Max.   :48.40   Max.   :34.10   Max.   :82.50   Max.   :62.10  
 NA's   :4       NA's   :2       NA's   :4       NA's   :4      

FACTscorer documentation built on May 29, 2017, 3:45 p.m.