-
Notifications
You must be signed in to change notification settings - Fork 1.2k
plots: support multiple Y fields? [qa] #4255
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
Comments
Cc @dmpetrov |
Motivation: deep learning or other scenarios where a single stage generates multiple results that need to be evaluated. The user would program the stage to output a single plots file with multiple columns in order to compare many variations. (This is a different option for experiments that doesn't need either run-cache nor multiple commits.)
|
Closing for now as stale |
+1 on this, i would like to show plots of precision and recall for different population segments and want to have them on the same graph. |
For reference, there is an open discussion #5980 and current WIP on the subject |
Depending on how your plot data is stored, you could use a custom template for that. See iterative/studio-support#23 (comment) |
Thanks @daavoo |
Let's say I have a tabular plots file
plot.csv
:and I want to overlay all 3 Hs in a single graph. I can't. I have to pick one at a time, e.g.:
$ dvc plots show -y h2 plot.csv
In fact even with
plots diff
there's no way to visualize these columns in a single graph (the file would have to be split into 3, each one versioned in a different commit). So what if-y
simply accepted multiple field names (orplots diff
accepted multiple-y
flags)? E.g.:In fact this could also apply to
-x
. But it could only be done with one or the other, not both (to keep things relatively simple).The text was updated successfully, but these errors were encountered: