View source: R/tx-scoreFACT_EF.R
| scoreFACT_EF | R Documentation |
Scores the Functional Assessment of Cancer Therapy - for patients receiving Enteral Feeding (FACT-EF) from item responses.
scoreFACT_EF(df, id = NULL, updateItems = FALSE, keepNvalid = FALSE)
df |
A data frame with the questionnaire items, appropriately-named. |
id |
(optional) The quoted name of a variable in |
updateItems |
(optional) Logical, if |
keepNvalid |
(optional) Logical, if |
Given a data frame that includes all of the FACT-EF items as variables, appropriately named, this function generates the FACT-EF scale score. It is crucial that the item variables in the supplied data frame are named according to FACT conventions. For example, the first 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.
For more details on the updateItems and keepNvalid arguments,
see the documentation entry for scoreFACTG and
FACTscorer.
A data frame containing the following scale score is returned:
FACT_EF - FACT Enteral Feeding Subscale
If a variable was given to the id argument, then that variable will
also be in the returned data frame. Additional, relatively unimportant,
variables will be returned if updateItems = TRUE or keepNvalid
= TRUE.
Keep in mind that this function (and R in general) is case-sensitive.
All items in df should be numeric (i.e., of type
integer or double).
This 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.
FACT-EF Scoring Guidelines, available at http://www.facit.org
For additional details on the function arguments, see
scoreFACTG and FACTscorer. For brevity,
examples are omitted below. However, this function is very similar to the
scoreFACTG7 function. See the documentation for
scoreFACTG7 for examples. Alternatively, examples for
scoreFACT_EF can be accessed by running
example(scoreFACT_EF).
## FIRST creating a df with fake item data to score
itemNames <- c('EF1', 'EF2', 'EF3', 'EF4', 'EF5', 'EF6', 'EF7', 'EF8',
'EF9', 'EF10', 'EF11', 'EF12', 'EF13', 'EF14', 'EF15',
'EF16', 'EF17', 'EF18', 'EF19', 'EF20')
exampleDat <- make_FACTdata(namesAC = itemNames, AConly = TRUE)
## NOW scoring the items in exampleDat
## Returns data frame with ONLY scale score
(scoredDat <- scoreFACT_EF(exampleDat))
## Using the id argument (makes merging with original data more fool-proof):
(scoredDat <- scoreFACT_EF(exampleDat, id = "ID"))
## Merge back with original data, exampleDat:
mergeDat <- merge(exampleDat, scoredDat, by = "ID")
names(mergeDat)
## Returns scale score, plus recoded items (updateItems = TRUE)
## Also illustrates effect of setting keepNvalid = TRUE.
scoredDat <- scoreFACT_EF(exampleDat, updateItems = TRUE, keepNvalid = TRUE)
names(scoredDat)
## Descriptives of scored scales
summary(scoredDat['FACT_EF'])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.