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

smooth.json 889 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
32
33
34
35
36
37
38
39
  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. "mark": {
  8. "type": "line"
  9. },
  10. "encoding": {
  11. "x": {
  12. "field": "<DVC_METRIC_X>",
  13. "type": "quantitative",
  14. "title": "<DVC_METRIC_X_LABEL>"
  15. },
  16. "y": {
  17. "field": "<DVC_METRIC_Y>",
  18. "type": "quantitative",
  19. "title": "<DVC_METRIC_Y_LABEL>",
  20. "scale": {
  21. "zero": false
  22. }
  23. },
  24. "color": {
  25. "field": "rev",
  26. "type": "nominal"
  27. }
  28. },
  29. "transform": [
  30. {
  31. "loess": "<DVC_METRIC_Y>",
  32. "on": "<DVC_METRIC_X>",
  33. "groupby": [
  34. "rev"
  35. ],
  36. "bandwidth": 0.3
  37. }
  38. ]
  39. }
Tip!

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

Comments

Loading...