data.table (version 1.5.3)

test.data.table: Runs a set of tests.

Description

Runs a set of tests to check data.table is working correctly.

Usage

test.data.table()

Arguments

Value

  • TRUE if all tests were successful. FALSE otherwise.

Details

Runs a series of tests. These can be used to see features and examples of usage - type 'test.data.table' to see the tests.

See Also

data.table

Examples

Run this code
try(library(ggplot2))
    test.data.table()		# this will run inside the data.table namespace
    eval(body(test.data.table))		# as though you copied and pasted its body into the console
		# there may be differences (e.g. the first may find non-exported functions inside data.table)
		# whereas the 2nd is a truer test.  We do both ways for full robustness.

Run the code above in your browser using DataCamp Workspace