get_dataset {bigrquery}R Documentation

Gets an existing dataset in a project

Description

Gets an existing dataset in a project

exists_dataset merely checks if a table exists, and returns either TRUE or FALSE.

Usage

get_dataset(project, dataset)

exists_dataset(project, dataset)

Arguments

project

The project name, a string

dataset

The dataset to get, a string

Value

a character vector of dataset names

See Also

Google API documentation: https://cloud.google.com/bigquery/docs/reference/v2/datasets/get

Other datasets: delete_dataset, insert_dataset, list_datasets, update_dataset

Examples

## Not run: 
get_dataset("publicdata", "shakespeare")

## End(Not run)

[Package bigrquery version 0.4.1 Index]