checkDataTable(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL)assertDataTable(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL, add = NULL, .var.name = NULL)
assert_data_table(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL, add = NULL, .var.name = NULL)
testDataTable(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL)
test_data_table(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL)
expect_data_table(x, key = NULL, index = NULL, types = character(0L),
any.missing = TRUE, all.missing = TRUE, min.rows = NULL,
min.cols = NULL, nrows = NULL, ncols = NULL, row.names = NULL,
col.names = NULL, info = NULL, label = NULL)
character
]
Expected primary key(s) of the data table.character
]
Expected secondary key(s) of the data table.character
]
Character vector of class names. Each list element must inherit
from at least one of the provided types.
The types logical(1)
]
Are missing values allowed? Default is TRUE
.logical(1)
]
Are matrices with only missing values allowed? Default is TRUE
.integer(1)
]
Minimum number of rows.integer(1)
]
Minimum number of columns.integer(1)
]
Exact number of rows.integer(1)
]
Exact number of columns.character(1)
]
Check for row names. Default is checkNamed
for possible values.
Note that you can use checkSubs
character(1)
]
Check for column names. Default is checkNamed
for possible values.
Note that you can use checkS
AssertCollection
]
Collection to store assertions. See AssertCollection
.NULL
|| character(1)
]
Name of the checked object to print in error message. If NULL
,
the name will be heuristically determined via substitute
.expect_that
..var.name
, but passed down to expect_that
.TRUE
. If the check
is not successful, assertDataTable
/assert_data_table
throws an error message, testDataTable
/test_data_table
returns FALSE
,
and checkDataTable
returns a string with the error message.
The function expect_data_table
always returns an
expectation
.checkArray
,
checkAtomicVector
,
checkAtomic
, checkCharacter
,
checkComplex
, checkDataFrame
,
checkEnvironment
,
checkFactor
, checkFunction
,
checkIntegerish
,
checkInteger
, checkList
,
checkLogical
, checkMatrix
,
checkNumeric
, checkVector
library(data.table)
dt = as.data.table(iris)
setkeyv(dt, "Species")
setkeyv(dt, "Sepal.Length", physical = FALSE)
testDataTable(dt)
testDataTable(dt, key = "Species", index = "Sepal.Length", any.missing = FALSE)
Run the code above in your browser using DataLab