| bqr_create_table | R Documentation | 
Create a Table
bqr_create_table(
  projectId = bqr_get_global_project(),
  datasetId = bqr_get_global_dataset(),
  tableId,
  template_data = NULL,
  timePartitioning = FALSE,
  expirationMs = 0L
)
| projectId | The BigQuery project ID. | 
| datasetId | A datasetId within projectId. | 
| tableId | Name of table you want. | 
| template_data | A dataframe with the correct types of data. If  | 
| timePartitioning | Whether to create a partioned table | 
| expirationMs | If a partioned table, whether to have an expiration time on the data. The default  | 
Creates a BigQuery table.
If setting timePartioning to TRUE then the table will be a 
partioned table
If you want more advanced features for the table, create it then call bqr_patch_table with advanced configuration configured from Table
TRUE if created, FALSE if not.
Other Table meta functions: 
Table(),
bqr_copy_table(),
bqr_delete_table(),
bqr_list_tables(),
bqr_patch_table(),
bqr_table_data(),
bqr_table_meta()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.