checkMatrix(x, mode = NULL, any.missing = TRUE, all.missing = TRUE,
min.rows = NULL, min.cols = NULL, nrows = NULL, ncols = NULL,
row.names = NULL, col.names = NULL)assertMatrix(x, mode = NULL, any.missing = TRUE, all.missing = TRUE,
min.rows = NULL, min.cols = NULL, nrows = NULL, ncols = NULL,
row.names = NULL, col.names = NULL, .var.name)
testMatrix(x, mode = NULL, any.missing = TRUE, all.missing = TRUE,
min.rows = NULL, min.cols = NULL, nrows = NULL, ncols = NULL,
row.names = NULL, col.names = NULL)
expect_matrix(x, mode = NULL, 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(1)]
Storage mode of the array. Arrays can hold vectors, i.e. logical(1)]
Are missing values allowed? Default is TRUE.logical(1)]
Are matricies 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 checkSubscharacter(1)]
Check for column names. Default is checkNamed for possible values.
Note that you can use checkSx. Defaults to a heuristic to determine
the name using deparse and substitute.expect_that..var.name, but passed down to expect_that.TRUE.
If the check is not successful, assertMatrix throws an error message,
testMatrix returns FALSE, checkMatrix returns
a string with the error message. The function expect_matrix will
return an expectation.assertArray,
checkArray, expect_array,
testArray;
assertAtomicVector,
checkAtomicVector,
expect_atomic_vector,
testAtomicVector;
assertAtomic, checkAtomic,
expect_atomic, testAtomic;
assertCharacter,
checkCharacter,
expect_character,
testCharacter; assertComplex,
checkComplex, expect_complex,
testComplex; assertDataFrame,
checkDataFrame,
expect_data_frame,
testDataFrame;
assertEnvironment,
checkEnvironment,
expect_environment,
testEnvironment;
assertFactor, checkFactor,
expect_factor, testFactor;
assertFunction,
checkFunction,
expect_function,
testFunction;
assertIntegerish,
checkIntegerish,
expect_integerish,
testIntegerish;
assertInteger, checkInteger,
expect_integer, testInteger;
assertList, checkList,
expect_list, testList;
assertLogical, checkLogical,
expect_logical, testLogical;
assertNumeric, checkNumeric,
expect_numeric, testNumeric;
assertVector, checkVector,
expect_vector, testVectorx = matrix(1:9, 3)
colnames(x) = letters[1:3]
testMatrix(x, nrows = 3, min.cols = 1, col.names = "named")Run the code above in your browser using DataLab