Skip to content

Commit a4099d3

Browse files
authoredMay 15, 2023
feat(templates): use lines to render smooth template (#131)
1 parent fef2941 commit a4099d3

File tree

2 files changed

+52
-5
lines changed

2 files changed

+52
-5
lines changed
 

‎src/dvc_render/vega_templates.py

+46-2
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,18 @@ class SmoothLinearTemplate(Template):
513513
"field": "rev",
514514
"type": "nominal",
515515
},
516+
"tooltip": [
517+
{
518+
"field": Template.anchor("x"),
519+
"title": Template.anchor("x_label"),
520+
"type": "quantitative",
521+
},
522+
{
523+
"field": Template.anchor("y"),
524+
"title": Template.anchor("y_label"),
525+
"type": "quantitative",
526+
},
527+
],
516528
},
517529
"transform": [
518530
{
@@ -523,18 +535,50 @@ class SmoothLinearTemplate(Template):
523535
},
524536
],
525537
},
538+
{
539+
"mark": {"type": "line", "opacity": 0.2},
540+
"encoding": {
541+
"x": {
542+
"field": Template.anchor("x"),
543+
"type": "quantitative",
544+
"title": Template.anchor("x_label"),
545+
},
546+
"y": {
547+
"field": Template.anchor("y"),
548+
"type": "quantitative",
549+
"title": Template.anchor("y_label"),
550+
"scale": {"zero": False},
551+
},
552+
"color": {"field": "rev", "type": "nominal"},
553+
"tooltip": [
554+
{
555+
"field": Template.anchor("x"),
556+
"title": Template.anchor("x_label"),
557+
"type": "quantitative",
558+
},
559+
{
560+
"field": Template.anchor("y"),
561+
"title": Template.anchor("y_label"),
562+
"type": "quantitative",
563+
},
564+
],
565+
},
566+
},
526567
{
527568
"mark": {
528-
"type": "point",
529-
"tooltip": {"content": "data"},
569+
"type": "circle",
570+
"size": 10,
571+
"tooltip": {"content": "encoding"},
530572
},
531573
"encoding": {
532574
"x": {
575+
"aggregate": "max",
533576
"field": Template.anchor("x"),
534577
"type": "quantitative",
535578
"title": Template.anchor("x_label"),
536579
},
537580
"y": {
581+
"aggregate": {"argmax": Template.anchor("x")},
538582
"field": Template.anchor("y"),
539583
"type": "quantitative",
540584
"title": Template.anchor("y_label"),

‎tests/test_vega.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@ def test_default_template_mark():
4444

4545
assert plot_content["layer"][0]["mark"] == "line"
4646

47-
assert plot_content["layer"][1]["mark"] == {
48-
"type": "point",
49-
"tooltip": {"content": "data"},
47+
assert plot_content["layer"][1]["mark"] == {"type": "line", "opacity": 0.2}
48+
49+
assert plot_content["layer"][2]["mark"] == {
50+
"type": "circle",
51+
"size": 10,
52+
"tooltip": {"content": "encoding"},
5053
}
5154

5255

0 commit comments

Comments
 (0)
Please sign in to comment.