bigQueryR (version 0.4.0)

bqr_list_projects: List Google Dev Console projects you have access to

Description

Example: bqr_list_projects()

Usage

bqr_list_projects()

Arguments

Value

A dataframe of the projects you have access to under the authentication

See Also

Other bigQuery meta functions: bqr_create_table, bqr_delete_table, bqr_list_datasets, bqr_list_tables, bqr_table_data, bqr_table_meta

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
  library(bigQueryR)
  
  ## this will open your browser
  ## Authenticate with an email that has access to the BigQuery project you need
  bqr_auth()
  
  ## verify under a new user
  bqr_auth(new_user=TRUE)
  
  ## get projects
  projects <- bqr_list_projects()
  
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace