tbl_kusto_abstract {AzureKusto}R 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()

[Package AzureKusto version 1.1.3 Index]