Learn R Programming

tidycells (version 0.2.2)

validate_cells: Validate cell-DF

Description

Validate cell-DF

Usage

validate_cells(dat)

Arguments

dat

An R object

Value

Logical scalar. If the value is FALSE, it will contain attribute named msg.

Details

It checks for following facts:

  • Whether dat is a data.frame

  • Whether dat conforms to rc_df format

  • Whether dat conforms to cell_df format If all the checks are passed then it returns TRUE else it returns FALSE with msg attribute, indicating reason for validation failure.

Examples

Run this code
# NOT RUN {
# returns TRUE
validate_cells(tibble::tibble(row = 1, col = 2, data_type = "numeric", value = "1"))

# this is FALSE
chk <- validate_cells(tibble::tibble(row = 1, col = 2, data_type = "numeric"))

# msg
attr(chk, "msg")
# }

Run the code above in your browser using DataLab