pbi_push_dataset_schema | R Documentation |
Pushes a dataset schema to the specified Power BI workspace. To add rows to the dataset, use pbi_push_rows().
pbi_push_dataset_schema(schema, group_id, retention = c("none", "basicFIFO"))
schema |
A push-dataset schema created by pbi_schema_create(). |
group_id |
The ID of the destination Power BI workspace. |
retention |
The retention policy of the dataset. Default is "none". |
A dataset with tables will be created in the specified Power BI workspace.
## Not run: group_id <- "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" schema <- pbi_schema_create( dt_list = list(iris), dataset_name = "The iris dataset", table_name_list = list(iris) ) pbi_push_dataset_schema(schema, group_id) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.