copy_to.kusto_database_endpoint | R Documentation |
This function uploads a local data frame into a remote data source, creating the table definition as needed. If the table exists, it will append the data to the existing table. If not, it will create a new table.
## S3 method for class 'kusto_database_endpoint'
copy_to(
dest,
df,
name = deparse(substitute(df)),
overwrite = FALSE,
method = "inline",
...
)
dest |
remote data source |
df |
local data frame |
name |
Name for new remote table |
overwrite |
If |
method |
For local ingestion, the method to use. "inline", "streaming", or "indirect". |
... |
other parameters passed to the query |
collect()
for the opposite action; downloading remote data into a local tbl.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.