esPlausible: esPlausible

Description Usage Arguments Details Value See Also Examples

Description

esPlausible helps detecting implausibilities in the raw ESM datasets.

Usage

1
esPlausible(dfList, itemVecList)

Arguments

dfList

a list. Each element of the list must be a data.frame. Each data.frame is a separate raw ESM dataset/an ESM questionnaire version. If there is just one ESM version the list therefore contains one data.frame.

itemVecList

a list. Each list element must be a vector. Each vector element must contain all the variable names of the respective ESM questionnaire version. Use function esItems to generate itemVecList.

Details

esPlausible makes no sense if there is only one ESM questionnaire version. However, if there is more than one version it makes sense. The list which is returned by esPlausible contains 4 elements:

  1. PlausibNames shows which item names occur in the different ESM questionnaire versions

  2. plausibClass shows the class of each item in each of the different ESM questionnaire versions (R built-in class registration)

  3. plausibRowNa shows the number of rows in each of the different ESM questionnaire versions and the percentage of existing data therein

  4. plausibMinMax shows the minimum and the maximum value for all items containing numeric data.

Value

A list of dataframes, each containing separate information regarding the plausibility of the ESM datasets. See Details for more information.

See Also

Exemplary code (fully executable) in the documentation of esmprep (function 12 of 29).

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
# o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o
# Prerequisites in order to execute esPlausible. Start --------------
# Use example list delivered with the package
RELEVANTVN_ES <- RELEVANTVN_ESext
# keyLsNew is a list of datasets, also delivered with the package
rmInvLs <- rmInvalid(keyLsNew, RELEVANTVN_ES)
plausibItems <- esItems(dfList=rmInvLs[["dfValid"]], RELEVANTVN_ES)
# Prerequisites in order to execute esPlausible. End ----------------
# -------------------------------------------------------
# Run function 12 of 29; see esmprep functions' hierarchy.
# -------------------------------------------------------
# Help checking the plausibility of items in the raw ESM datasets. rmInvLs[["dfValid"]]
# is one of the results from function 'rmInvalid'.
# plausibItems is the result of function 'esItems'.
plausibLs <- esPlausible(dfList=rmInvLs[["dfValid"]], itemVecList=plausibItems)
# Display the results (4 data frames) to the console
# plausibNames gives an overview of the item names across all ESM versions
plausibLs[["plausibNames"]]
# plausibClass gives an overview of the variable types of all items
plausibLs[["plausibClass"]]
# plausibRowNa shows for each ESM version the number of lines in the raw
# ESM datasets and how much percent of the data is missing (NAs).
plausibLs[["plausibRowNa"]]
# plausibMinMax shows for each numeric variable the minimum and maximum.
plausibLs[["plausibMinMax"]]
# o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o=o

mmiche/esmprep documentation built on July 7, 2019, 8:23 p.m.