-
Joined
Aug 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"description": "A contour plot example, overlaying a density estimate on scatter plot points.", | |
"width": 500, | |
"height": 400, | |
"padding": 5, | |
"autosize": "pad", | |
"signals": [ | |
{ | |
"name": "bandwidth", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"description": "Эллипс по точкам", | |
"data": { | |
"name": "dataset" | |
}, | |
"mark": { | |
"type": "line", | |
"interpolate": "linear" | |
}, |