Learn R Programming

tiledb (version 0.9.2)

tiledb_stats_raw_dump: Dumps internal TileDB statistics as JSON to file

Description

This function requires TileDB Embedded 2.0.3 or later.

Usage

tiledb_stats_raw_dump(path)

Arguments

path

Character variable with path to stats file; if the empty string is passed then the result is displayed on stdout.

Examples

Run this code
# NOT RUN {
if (tiledb_version(TRUE) >= "2.0.3") {
  pth <- tempfile()
  tiledb_stats_raw_dump(pth)
  cat(readLines(pth)[1:10], sep = "\n")
}
# }

Run the code above in your browser using DataLab