Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

default.json 714 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  1. {
  2. "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
  3. "data": {
  4. "values": "<DVC_METRIC_DATA>"
  5. },
  6. "title": "<DVC_METRIC_TITLE>",
  7. "width": 300,
  8. "height": 300,
  9. "mark": {
  10. "type": "line"
  11. },
  12. "encoding": {
  13. "x": {
  14. "field": "<DVC_METRIC_X>",
  15. "type": "quantitative",
  16. "title": "<DVC_METRIC_X_LABEL>"
  17. },
  18. "y": {
  19. "field": "<DVC_METRIC_Y>",
  20. "type": "quantitative",
  21. "title": "<DVC_METRIC_Y_LABEL>",
  22. "scale": {
  23. "zero": false
  24. }
  25. },
  26. "color": {
  27. "field": "rev",
  28. "type": "nominal"
  29. }
  30. }
  31. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...