FemFit_removeSpikes: Remove Spikes from an FemFit dataset

Description Usage Arguments Details Value See Also Examples

Description

Processes an FemFit dataset to remove observations associated with temperature spikes.

Usage

1
FemFit_removeSpikes(x, whichSession = "", spikes.threshold = 2)

Arguments

x

An "FemFit" object.

whichSession

A character vector of session identifiers. Defaults to processing all sessions.

spikes.threshold

The numeric threshold to remove pressure fluctuations associated with the change in temperature.

Details

Removes observations where the sum of the lagged temperature differences across the eight sensors is greater than or equal to spikes.threshold.

Value

Returns the processed "FemFit" object.

See Also

read_FemFit

Examples

1
2
3
4
5
session643 = read_FemFit("Datasets_AukRepeat/dee8fc3fdcfccb27_643_csv.zip") %>%
    FemFit_removeSpikes()

# Alternatively without the piping operator:
session643 = FemFit_removeSpikes(read_FemFit("Datasets_AukRepeat/dee8fc3fdcfccb27_643_csv.zip"))

TheGreatGospel/FemFit documentation built on May 21, 2019, 9:19 a.m.