A bare bones R package to import Coda tables.
To get started...
library(devtools)
install_github("hudsonsuds/rCoda")
Gather a Coda API token with the right permissions (account page)[https://coda.io/account]
Pass your api token, doc_id, and table_id to the getTableRows
method
library(rCoda)
library(tidyr)
library(dplyr)
bearer_token <- 'add-your-token-here'
doc_id <- 'doc_id'
table_id <- 'table_id'
t <- getTableRows(doc_id, table_id, bearer_token)
This package doesn't do any column formating and is read-only for now.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.