Skip to contents

Concatenate classic and PROBIT estimates into a single data.frame

Usage

merge_op(x, y, prop2percent = FALSE)

Arguments

x

Classic estimates data frame

y

Probit estimates data frame

prop2percent

Logical. Should proportion type indicators be converted to percentage? Default is FALSE.

Value

A data.frame() of combined classic and probit estimates.

Author

Ernest Guevarra

Examples

if (FALSE) { # \dontrun{
  test <- merge_op(
    x = classicEstimates, y = probitEstimates
  )
} # }