tbl_kusto_abstract: Create a local lazy tbl

View source: R/tbl.R

tbl_kusto_abstractR Documentation

Create a local lazy tbl

Description

Useful for testing KQL generation without a remote connection.

Usage

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()

cloudyr/AzureKusto documentation built on Oct. 15, 2023, 5:42 p.m.