Import a dataset using a KDB+ query.

dai.create_dataset_from_kdb(
  destination,
  query,
  progress = getOption("dai.progress", TRUE)
)

Arguments

destination

Destination for KDB+ Query to be stored on the local filesystem

query

KDB query. Use standard q queries.

progress

Whether to display a progress bar.

Value

DAIFrame representing the dataset.

Details

Find more details about how to enable data connectors in the documentation.

Examples

# \donttest{
data <- dai.create_dataset_from_kdb("test_kdb.csv", "select from tab where item=`foo")
# }