-
Suppress banner and card titles in slideshow
Is there a way to suppress the banner and card title for cards published in a slideshow? We are publishing slideshows on pages in a Google site and would prefer to use the site headings for titles so that they show up in a table of contents at the top of the page.
-
Redshift order by
My first try at using Redshift. Trying to use ORDER BY and not getting the expected result. The output table should be sorted by column "a". Here are the steps: 1. Create tbl_data SELECT 3 as "a", 30 as "b" UNION ALL SELECT 3 as "a", 30 as "b" UNION ALL SELECT 2 as "a", 20 as "b" UNION ALL SELECT 2 as "a", 20 as "b" UNION…
-
Scheduling
Using R to predict future values based on current data. The workflow is 1. Run Domo workflow to get data from Trello and create actual values dataset in Domo. 2. Run R script using the R plugin to calculate predicted future values and create dataset in Domo containing actual and predicted values. 3. Display actual and…
-
Error starting a dataflow
We have a dataflow which is run daily to update an issue history dataset. The intent is to have the dataflow start when one of the input datasets is updated. Everything works when the dataflow is started manually, but when I select the option to kick off the dataflow when one of the input datasets changes, an error message…
-
pydomo get error
I'm attempting to replace the contents of a Domo dataset using a python script with pydomo calls. When I run the script, the dataset in Domo is not updated, but no exception is raised. How do I see the http response for the import so that I can get the error code? Here is the script try:…
-
How to replace an existing dataset
I'm trying to create a dataflow that increments a counter. Dataset ds1 has one record with one field containing a number. The dataflow should input ds1, increment the number by one, and output the number back to ds1, replacing the existing data. When I run the dataflow, it creates ds2 with the same name as ds1 but a…
-
Accessing lists using github connector
Using the github connector to access issues in a github repo. Using issue labels as an example, the resulting dataset has fields for `labels_url` and `labels`. `labels_url` contains strings like "https://api.github.com/repos/openstax/work-management-reports/issues/38/labels{/name}", which appear to be a github api call…
-
Domo to Trello authentication
I have created several datasets using the Trello Connector, and set them to append daily. They worked well for three days, but now the updates are all failing with the message, "Failed to authenticate. Refresh your credentials and try again." It would seem that the Domo to Trello authentication is failing, but I don't know…
-
DomoR Error in is.url(url) : length(url) == 1 is not TRUE
Attempting to use the DomoR plugin to create a dataset in Domo. Here is the R script library(pryr) library(DomoR) library(devtools) init('MyDomain','MyAccessCode') a <- c(2,3,4) b <- c(1,2,3) df <- data.frame(a, b) DomoR::replace_ds(df, name = "tanbit_r_test", description = "DomoR test") When I run this I get this error,…
-
Extend x axis past the end of the data
Is there a way to extend the x-axis past the end of the data? I'm building a burnup chart to show progress on a release. The x axis is datetime values. The y axis is points completed. I'd like the x-axis to extend to the end of the release, even though there are only data values for dates up to today.