Dean_Wangerin Contributor

Comments

  • I also cannot get the corr() function to work. However I did get it to work by manually creating the sql math in a beastmode. Use this code: (count(x) * sum(x * y) - sum(x) * sum(y)) / (sqrt(count(x) * sum(x * x) - sum(x) * sum(x)) * sqrt(count(x) * sum(y * y) - sum(y) * sum(y))) Then replace x and y with your measure…
  • This is available now! One trick though - you need to turn on the tooltip menu, which is now one of the menu items inside the analyzer. After that you can drag attributes into the tooltip area, just like with the x-axis, series, etc. See my screenshot below.
  • hi, I recently ran into the same problem, and figured it out. Hopefully this will help you too: In index.html: <a href='https://YOURINSTANCE.domo.com/page/NUMBER/kpis/details/NUMBER' onclick='navigateToThisLink();'>text about the link</a> In app.js: function navigateToThisLink()…
  • I also got a number of warnings about depreciated code when installing ryuu with npm. But everything worked correctly despite those warnings. One thing I did discover is that you need to use Git Bash, not Powershell or the command line. Both of those were causing problems. cheers, Dean