Programmatic access
You can access the project_loon data programmatically using the Redivis API for R or Python.
- Install the redivis-r package:
devtools::install_github("redivis/redivis-r")Access the data:
library(redivis)
user <- redivis::user("sdss")
dataset <- user$dataset("project_loon")
table <- dataset$table("loon")
# Load table as tidyverse tibble
df <- table$to_tibble(max_results = 100)- Install the redivis-python client library:
pip install --upgrade redivisAccess the data:
import redivis
user = redivis.user("sdss")
dataset = user.dataset("project_loon")
table = dataset.table("loon")
# Load table as a dataframe
df = table.to_pandas_dataframe(max_results = 100)