RRF: Interfaces for RRF package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to RRF functions that can be used in a pipeline implemented by magrittr.

Usage

1
2

Arguments

data

data frame, tibble, list, ...

...

Other arguments passed to the corresponding interfaced function.

Details

Interfaces call their corresponding interfaced function.

Value

Object returned by interfaced function.

Author(s)

Roberto Bertolusso

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## Not run: 
library(intubate)
library(magrittr)
library(RRF)


data(iris)
set.seed(111)
ind <- sample(2, nrow(iris), replace = TRUE, prob=c(0.8, 0.2))

## Original function to interface
RRF(Species ~ ., data=iris[ind == 1,])

## The interface puts data as first parameter
ntbt_RRF(iris[ind == 1,], Species ~ .)

## so it can be used easily in a pipeline.
iris[ind == 1,] %>%
  ntbt_RRF(Species ~ .)


## ntbt_rrfImpute: Missing Value Imputations by RRF
data(iris)
iris.na <- iris
set.seed(111)
for (i in 1:4) iris.na[sample(150, sample(20)), i] <- NA

## Original function to interface
set.seed(222)
rrfImpute(Species ~ ., iris.na)

## The interface puts data as first parameter
set.seed(222)
ntbt_rrfImpute(iris.na, Species ~ .)

## so it can be used easily in a pipeline.
set.seed(222)
iris.na %>%
  ntbt_rrfImpute(Species ~ .)

## End(Not run)

intubate documentation built on May 2, 2019, 2:46 p.m.