ufs (version 0.3.2)

suspectParticipants: Selects suspect participants from a carelessObject

Description

This function is a wrapper for the carelessObject() function, which wraps a number of functions from the careless package. Normally, you'd probably call carelessReport which calls this function to generate a report of suspect participants.

Usage

suspectParticipants(
  carelessObject,
  nFlags = 1,
  digits = 2,
  missingSymbol = "Missing"
)

Arguments

carelessObject

The result of the call to carelessObject().

nFlags

The number of flags required to be considered suspect.

digits

The number of digits to round to.

missingSymbol

How to represent missing values.

Value

A logical vector.

Examples

Run this code
# NOT RUN {
suspectParticipants(carelessObject(mtcars),
                    nFlags = 2);
# }

Run the code above in your browser using DataCamp Workspace