mda: Interfaces for mda package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to mda 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
## Not run: 
library(intubate)
library(magrittr)
library(mda)

## ntbt_fda: Flexible Discriminant Analysis
data(iris)
## Original function to interface
fda(Species ~ ., data = iris)

## The interface puts data as first parameter
ntbt_fda(iris, Species ~ .)

## so it can be used easily in a pipeline.
iris %>%
  ntbt_fda(Species ~ .)

## ntbt_mda: Mixture Discriminant Analysis
data(iris)
## Original function to interface
mda(Species ~ ., data = iris)

## The interface puts data as first parameter
ntbt_mda(iris, Species ~ .)

## so it can be used easily in a pipeline.
iris %>%
  ntbt_mda(Species ~ .)

## End(Not run)

rbertolusso/intubate documentation built on May 27, 2019, 3 a.m.