Learn R Programming

AzureKusto (version 1.1.3)

tbl_kusto_abstract: Create a local lazy tbl

Description

Useful for testing KQL generation without a remote connection.

Usage

tbl_kusto_abstract(df, table_name, ...)

Arguments

Examples

Run this code
library(dplyr)
df <- data.frame(x = 1, y = 2)

df <- tbl_kusto_abstract(df, "table1")
df %>%
    summarise(x = sd(x)) %>%
    show_query()

Run the code above in your browser using DataLab