if (FALSE) {
tbl1 <- tbl_kusto(db, "table1")
## standard dplyr syntax:
summarise(tbl1, mx = mean(x))
## Kusto extensions:
summarise(tbl1, mx = mean(x), .strategy = "broadcast") # a broadcast summarise
summarise(tbl1, mx = mean(x), .shufflekeys = c("var1", "var2")) # a shuffle summarise with keys
summarise(tbl1, mx = mean(x), .num_partitions = 5) # no. of partitions for a shuffle summarise
}
Run the code above in your browser using DataLab