I wanted to graph this linear equation in domo
GoalVariance = (E_Rate)x + (N_Rate)y
Is this possible in Domo?
You'd need to generate a dataset with numbers between the min and max of your graph and then you could utilize variables within the page for the E_Rate and N_Rate Values to automatically update your graph. You can use the value from the dataset for both your x and y value.
Yes, it is possible to graph a linear equation in Domo.
To graph this equation in Domo, you can use the "Line" chart type, which allows you to plot a line based on a mathematical equation. Here are the steps you can follow:
Note that you may need to adjust the scale of the x-axis and y-axis to make sure the graph is displayed correctly.
Hey @Lowell_Walker thank you for the reply. I am trying to follow your directions and getting stumped on step 5, not sure what I am missing. Can you point me in the right direction?
Hey folks, thanks for your help! I solved this using the first method of creating a dataset.
I pulled the two values from a separate table and created a small dataset of the two coordinates.
SELECT 0 AS New, ExistingSlug AS Existing FROM cases_slug UNION ALL SELECT NewSlug AS New, 0 AS Existing FROM cases_slug
ExistingSlug
cases_slug
NewSlug
Then I created the XY graph and used the two variables
Thanks for your help!