Math.PI * 2); double z = Math.Sin(x) + Math.Cos(y); cs[i] = new(x, y, z); } TINSourceCoordinates3dArray data = new(cs.ToArray()); ScottPlot.Plottables.TINPlot contour = new(data); contour.MinorInterval = 0.1; c
6.箱线图(Box Plot):显示数据的中位数、上下四分位数和异常值,适用于显示数据的分布和离群点。 7.热力图(Heatmap):使用颜色编码矩阵中的值,适用于显示数据的密度和相关性。 此外,ScottPlot还支持错误条图(Error Bar Plot)、3D曲线图、轮廓图(Contour Plot)等高级曲线类型。©...
File tree src/ScottPlot5/ScottPlot5/Plottables ContourLines.cs 1 file changed +1 -1lines changed Diff for: src/ScottPlot5/ScottPlot5/Plottables/ContourLines.cs +1-1 Original file line numberDiff line numberDiff line change @@ -93,7 +93,7 @@ private void UpdateAxisLimits() 93 93 ...
JSType; namespace ScottPlotContourLineError { internal class Program { static void Main(string[] args) { double[,] data; double[] ud = { 10.00, 9.80, 9.60, 9.40, 9.20, 9.00, 8.80, 8.60, 8.40, 8.20, 8.00, 7.80, 7.60, 7.40, 7.20, 7.00, 6.80, 6.60, 6.40, 6.20, 6.00, 5.80, ...
Contour lines are now calculated without triangulation of the original grid. The MarchingSquares algorithm is used to find the contour. The resulting lines are merged into a common path. There can be several of them for one elevation level. Since our lines are merged into a path, we can add...
Idea 1. Contour line additionally to heat map can make the plot more clearer. E.g. : or In the first version only the color of the contour line should be configurable. Idea 2. Isoline as new plot type, such as: In this case the values (h...
* ContourLines: New plot type for displaying lines that mark points of equal elevation given a collection of 3D points (#4296, #2330, #3795) @jon-rizzo @StendProg ## ScottPlot 5.0.39 _Published on [NuGet](https://www.nuget.org/profiles/ScottPlot) on 2024-08-02_ 0 comments on commi...
src/ScottPlot5/ScottPlot5 Cookbook/Recipes/PlotTypes/Contour.cs +39-11 Original file line numberDiff line numberDiff line change @@ -8,7 +8,33 @@ public class Contour : ICategory 8 8 "three-dimensional surface of a function on a two-dimensional plane " + 9 9 "by connecting ...