detrend_Data: Linear regression to detrend the data

Description Usage Arguments Value Examples

View source: R/detrend_Data.R

Description

This function performs a linear regression to detrend the data set.

Usage

1

Arguments

data

data.frame (required): A log file imported with import_Data.

plot

logical (optional): TRUE to plot the data set before and after detrending.

Value

A data.frame with detrended input data.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
# Load example data
file <- system.file("extdata/raw.log", package = "roughness")
data <- import_Data(file)

# find and remove outliers
data_cleaned <- find_Outliers(data = data,
                              prefilter = TRUE,
                              method = c("iqr", "sd", "mad"),
                              remove = "mad",
                              window = FALSE,
                              width = 20,
                              step = 10, 
                              hist = TRUE,
                              plot = TRUE)
                              
# de-trend the data set
data_detrend <- detrend_Data(data_cleaned, plot = TRUE)

tzerk/roughness documentation built on May 3, 2019, 2:05 p.m.