Learn R Programming

tiledb (version 0.19.1)

tiledb_stats_raw_dump: Dumps internal TileDB statistics as JSON to a string

Description

This function requires TileDB Embedded 2.0.3 or later.

Usage

tiledb_stats_raw_dump()

Arguments

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
if (tiledb_version(TRUE) >= "2.0.3") {
  txt <- tiledb_stats_raw_dump()
  cat(txt, "\n")
}

Run the code above in your browser using DataLab