bind_data {maSAE}R Documentation

Merge Data Sets

Description

You will usually have different data sets for the first, second and possibly a null phase. This functions binds them into a data sets suitable to create an object of class saeObj.

Usage

bind_data(s1, s2, s0 = NULL)

Arguments

s1

The first phase data.frame.

s2

The second phase data.frame.

s0

Possibly a null phase data.frame.

Value

A data.frame with added boolean variables phase1 and phase2.

Note

This is experimental!

Examples

data(list= paste0("s", 1:2), package = "maSAE")
str(s1)
str(s2)
str(bind_data(s1, s2))

[Package maSAE version 2.0.3 Index]