-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
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
ability to plot multiple metrics on same slice #3108
Comments
I'm pretty sure that we have some kind of visualization that can display more than one metric at once, e.g time series - line chart. |
thanks @xrmx In our case we have one data source where I can say |
Thanks for clarifing, metrics in the slice context means what you call events :) BTW for data queried by sqlalchemy you should be able to create the necessary view with sql lab without requiring a dba. |
Not sure if I explained it correctly. Lets say we have two data sources in druid "orders" and "signups" and I would like to plot these two by time on a table / graph. I am not sure of a simple way to do it. |
or lets say I want to plot |
No easy solution for this apart from:
|
Thanks @mistercrunch |
Hi everyone! I have the same problem. What is right solution of this? |
Not sure if its the right place.
Looking for ability to plot more than one metric on the same chart. Its very common to see number of orders vs number of signups on the same chart by day.
It sounds similar to JOIN but it is slightly different Join is at the event level. Here I am looking for join at the metrics level.
I looked at couple of other issues related to join and it is pointed that we can materialise a view and the make use of superset over the view. But that is not always possible, given that superset is an amazing exploratory tool it hinders Analytics user to be able to explore data in such fashion requiring DBA to create views for each of the things that they want to explore.
Also backend might not support such joins, in our case we are using druid which doesn't support views/JOINS.
The text was updated successfully, but these errors were encountered: