tbl_kusto_abstract function

Create a local lazy tbl

Create a local lazy tbl

Useful for testing KQL generation without a remote connection.

tbl_kusto_abstract(df, table_name, ...)

Examples

library(dplyr) df <- data.frame(x = 1, y = 2) df <- tbl_kusto_abstract(df, "table1") df %>% summarise(x = sd(x)) %>% show_query()
  • Maintainer: Alex Kyllo
  • License: MIT + file LICENSE
  • Last published: 2023-10-12