Open alan-krumholz opened 4 years ago
This package is not maintained (see issue 38). I suggest trying over at the official Looker SDK project: https://github.com/looker-open-source/sdk-codegen
It actually isn't too hard, though there is not a wrapper to make it easy.
sdk$refresh()
data <- sdk$userSession$lookApi$look(6, config = sdk$oauthHeader)$content
data$title
[1] "Simple Look"
data$query$fields
[[1]]
[1] "user.count"
[[2]]
[1] "history.source"
[[3]]
[1] "history.completed_date"
R SDK don't seem to have the look() method and can't find another way to run a look with a different filter
In Python and Ruby we ca do that using:
Python:
Ruby
but we need a way to do the same using the R SDK. Is it possible?
Thanks