Authenticate BigQuery with Gcloud using Application Default Credentials

You need to have Google Cloud Shell SDK installed on your local machine - https://cloud.google.com/sdk/docs/install Open Google Cloud SDK Shell and type the below command. gcloud auth application-default login This will open up a browser where you can authenticate. The above command then create an ‘application_default_credentials.json’ credential file in the... [Read More]

R Tips/Tricks/Bookmarks

Find R Version you are running in RStudio - R.version["version.string"]. Find Version of Specific Package - packageVersion("package_name"). [Read More]