We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ds_query
as_tibble
Hi, I am running test query on a dataset in R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid".
df <- domo$ds_query(id, 'select * from table limit 4')
and encountered this error:
Error in as_tibble(get_types) : could not find function "as_tibble"
To resolve, I had to manually load library(tibble).
library(tibble)
Seems like it would be better to import this package in rdomo rather than expecting it to be loaded in user environment.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I am running test query on a dataset in R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid".
and encountered this error:
To resolve, I had to manually load
library(tibble)
.Seems like it would be better to import this package in rdomo rather than expecting it to be loaded in user environment.
The text was updated successfully, but these errors were encountered: