LookerSetup: LookerSetup

Description Usage Arguments Examples

View source: R/setup.R

Description

Takes API token, API secret, host and port as input and stores them for user in LookerQuery

Usage

1
LookerSetup(token, secret, host, port)

Arguments

token
secret
host
port

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (token, secret, host, port) 
{
    if (url.exists(paste("https://", host, sep = ""))) {
        Looker <<- new.env()
        Looker$token <- token
        Looker$secret <- secret
        Looker$host <- host
        Looker$port <- port
    }
    else {
        stop("The host name you entered does not exist.")
    }
  }

robertzk/LookR documentation built on May 27, 2019, 10:33 a.m.