Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cloudyr/bigQueryR
R Interface with Google BigQuery
https://github.com/cloudyr/bigQueryR
api bigquery cloudyr google googleauthr r
Last synced: about 1 month ago
JSON representation
R Interface with Google BigQuery
- Host: GitHub
- URL: https://github.com/cloudyr/bigQueryR
- Owner: cloudyr
- License: other
- Created: 2015-10-09T09:07:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-20T17:50:40.000Z (8 months ago)
- Last Synced: 2024-08-13T07:13:31.003Z (5 months ago)
- Topics: api, bigquery, cloudyr, google, googleauthr, r
- Language: R
- Homepage: http://code.markedmondson.me/bigQueryR
- Size: 1.44 MB
- Stars: 41
- Watchers: 6
- Forks: 21
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - cloudyr/bigQueryR - R Interface with Google BigQuery (R)
README
# bigQueryR
## Introduction
This is a package for interacting with [BigQuery](https://cloud.google.com/bigquery/) from within R.
See the [bigQueryR website](http://code.markedmondson.me/bigQueryR) for examples, details and tutorials.
## Installation ##
[![CRAN](http://www.r-pkg.org/badges/version/bigQueryR)](http://cran.r-project.org/package=bigQueryR)
[![Build Status](https://travis-ci.org/cloudyr/bigQueryR.png?branch=master)](https://travis-ci.org/cloudyr/bigQueryR)
[![codecov.io](http://codecov.io/github/cloudyr/bigQueryR/coverage.svg?branch=master)](http://codecov.io/github/cloudyr/bigQueryR?branch=master)This package is on CRAN, but to install the latest development version you can install from the cloudyr drat repository:
```R
# latest stable version
install.packages("bigQueryR", repos = c(getOption("repos"), "http://cloudyr.github.io/drat"))
```Or, to pull a potentially unstable version directly from GitHub:
```R
if(!require("ghit")){
install.packages("ghit")
}
ghit::install_github("cloudyr/bigQueryR")
```---
[![cloudyr project logo](http://i.imgur.com/JHS98Y7.png)](https://github.com/cloudyr)