Nothing
This Fidap client connect to our big data warehouses and gives you seamless access to external data.
NOTE: Fidap is currently invite only and requires an api_key
to work.
install.packages('fidap')
library(fidap)
client <- fidap_client(api_key="Paste API_KEY here from fidap dashboard", source="bq")
You can run your queries by using this method, it will return a Pandas dataframe containing the results of the query. Result would be None if something goes wrong i.e. incorrect query / not a valid API key.
library(fidap)
client <- fidap_client(api_key="Paste API_KEY here from fidap dashboard", source="bq")
df <- client$sql(sql="paste your QUERY")
git clone https://github.com/fidapco/fidap-R-client.git
cd fidap-R-client
devtools::load_all()
devtools::install()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.