зеркало из https://github.com/Azure/AzureKusto.git
add tidyr::nest and unnest to imports so that S3 methods work
This commit is contained in:
Родитель
62e80f4e41
Коммит
34eff67a25
|
@ -27,13 +27,13 @@ Imports:
|
|||
AzureRMR (>= 2.0.0),
|
||||
tibble,
|
||||
dplyr,
|
||||
tidyr,
|
||||
tidyselect (>= 0.2.4),
|
||||
DBI (>= 1.0.0)
|
||||
Suggests:
|
||||
bit64,
|
||||
knitr,
|
||||
testthat,
|
||||
tidyr,
|
||||
AzureGraph,
|
||||
AzureStor (>= 2.0.0),
|
||||
rmarkdown
|
||||
|
|
|
@ -52,6 +52,7 @@ S3method(kql_render,op)
|
|||
S3method(kql_render,tbl_kusto_abstract)
|
||||
S3method(left_join,tbl_kusto_abstract)
|
||||
S3method(mutate,tbl_kusto_abstract)
|
||||
S3method(nest,tbl_kusto_abstract)
|
||||
S3method(op_grps,op_base)
|
||||
S3method(op_grps,op_double)
|
||||
S3method(op_grps,op_group_by)
|
||||
|
@ -89,6 +90,7 @@ S3method(tbl_vars,tbl_kusto_abstract)
|
|||
S3method(ungroup,tbl_kusto_abstract)
|
||||
S3method(union,tbl_kusto_abstract)
|
||||
S3method(union_all,tbl_kusto_abstract)
|
||||
S3method(unnest,tbl_kusto_abstract)
|
||||
export(AzureKusto)
|
||||
export(add_op_join)
|
||||
export(add_op_set_op)
|
||||
|
@ -130,7 +132,6 @@ export(kql_vector)
|
|||
export(kql_window)
|
||||
export(kusto_database_endpoint)
|
||||
export(list_kusto_tokens)
|
||||
export(nest.tbl_kusto_abstract)
|
||||
export(op_base)
|
||||
export(op_double)
|
||||
export(op_grps)
|
||||
|
@ -144,7 +145,6 @@ export(tbl_kusto)
|
|||
export(tbl_kusto_abstract)
|
||||
export(translate_kql)
|
||||
export(union)
|
||||
export(unnest.tbl_kusto_abstract)
|
||||
exportClasses(AzureKustoConnection)
|
||||
exportClasses(AzureKustoDriver)
|
||||
exportClasses(AzureKustoResult)
|
||||
|
@ -168,4 +168,6 @@ import(DBI)
|
|||
import(dplyr)
|
||||
import(methods)
|
||||
import(rlang)
|
||||
importFrom(tidyr,nest)
|
||||
importFrom(tidyr,unnest)
|
||||
importFrom(utils,head)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#' @importFrom utils head
|
||||
#' @import rlang
|
||||
#' @import dplyr
|
||||
#' @importFrom tidyr nest unnest
|
||||
#' @import DBI
|
||||
#' @import methods
|
||||
NULL
|
||||
|
@ -12,4 +13,3 @@ utils::globalVariables(c("self", "asc", "con", "make_list"))
|
|||
add_methods()
|
||||
invisible(NULL)
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
\alias{nest.tbl_kusto_abstract}
|
||||
\title{Nest method for Kusto tables}
|
||||
\usage{
|
||||
nest.tbl_kusto_abstract(.data, ...)
|
||||
\method{nest}{tbl_kusto_abstract}(.data, ...)
|
||||
}
|
||||
\arguments{
|
||||
\item{.data}{A kusto tbl.}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
\alias{unnest.tbl_kusto_abstract}
|
||||
\title{Unnest method for Kusto tables}
|
||||
\usage{
|
||||
unnest.tbl_kusto_abstract(.data, ..., .id = NULL)
|
||||
\method{unnest}{tbl_kusto_abstract}(.data, ..., .id = NULL)
|
||||
}
|
||||
\arguments{
|
||||
\item{.data}{A Kusto tbl.}
|
||||
|
|
Загрузка…
Ссылка в новой задаче