flexmix: Interfaces for flexmix package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

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

Usage

1
2
3

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


## ntbt_flexmix: Flexible Mixture Modeling
data("NPreg", package = "flexmix")

## Original function to interface
set.seed(1)
ex1 <- flexmix(yn ~ x + I(x^2), data = NPreg, k = 2,
               control = list(verb = 5, iter = 100))
plot(ex1)

## The interface puts data as first parameter
set.seed(1)
ex1 <- ntbt_flexmix(NPreg, yn ~ x + I(x^2), k = 2,
                    control = list(verb = 5, iter = 100))
plot(ex1)

## so it can be used easily in a pipeline.
set.seed(1)
NPreg %>%
  ntbt_flexmix(yn ~ x + I(x^2), k = 2,
               control = list(verb = 5, iter = 100)) %>%
  plot()

## NOTE: it seems we could also add initFlexmix and stepFlexmix,
##       that call flexmix repeteadly. I will not include examples
##       for those for now.

## End(Not run)

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