ordinal: Interfaces for ordinal package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to ordinal 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
34
35
36
37
38
## Not run: 
library(intubate)
library(magrittr)
library(ordinal)


## ntbt_clm: Cumulative Link Models
## ntbt_clm2:
## Original function to interface
clm(rating ~ temp * contact, data = wine)
clm2(rating ~ temp * contact, data = wine)

## The interface puts data as first parameter
ntbt_clm(wine, rating ~ temp * contact)
ntbt_clm2(wine, rating ~ temp * contact)

## so it can be used easily in a pipeline.
wine %>%
  ntbt_clm(rating ~ temp * contact)
wine %>%
  ntbt_clm2(rating ~ temp * contact)


## ntbt_clmm: Cumulative Link Mixed Models
## Original function to interface
clmm(SURENESS ~ PROD + (1|RESP) + (1|RESP:PROD), data = soup,
     link = "probit", threshold = "equidistant")

## The interface puts data as first parameter
ntbt_clmm(soup, SURENESS ~ PROD + (1|RESP) + (1|RESP:PROD),
          link = "probit", threshold = "equidistant")

## so it can be used easily in a pipeline.
soup %>%
  ntbt_clmm(SURENESS ~ PROD + (1|RESP) + (1|RESP:PROD),
            link = "probit", threshold = "equidistant")

## End(Not run)

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