LookerToDataFrame: LookerToDataFrame

Description Usage Arguments Examples

View source: R/LookerToDataFrame.R

Description

Clean the JSON object returned from LookerQuery and return a data frame

Usage

1
LookerToDataFrame(LookerObject)

Arguments

LookerObject

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- 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 (LookerObject) 
{
    header <- unlist(fromJSON(LookerObject)$fields, use.names = FALSE)
    df <- data.frame(matrix(unlist(fromJSON(LookerObject)$data), 
        ncol = length(header), byrow = TRUE))
    names(df) <- header
    return(df)
  }

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