Create a Table
bqr_create_table(projectId = bq_get_global_project(),
datasetId = bq_get_global_dataset(), tableId, template_data,
timePartitioning = FALSE, expirationMs = 0L)The BigQuery project ID.
A datasetId within projectId.
Name of table you want.
A dataframe with the correct types of data
Whether to create a partioned table
If a partioned table, whether to have an expiration time on the data. The default 0 is no expiration.
TRUE if created, FALSE if not.
Creates a BigQuery table.
If setting timePartioning to TRUE then the table will be a
https://cloud.google.com/bigquery/docs/creating-partitioned-tables
Other bigQuery meta functions: bqr_delete_table,
bqr_list_datasets,
bqr_list_projects,
bqr_list_tables,
bqr_table_data,
bqr_table_meta