用于散点图的 Sciplot C++

Sciplot c++ for scatter plots

有没有人使用过 c++ 中的 sciplot 库来创建散点图? https://sciplot.github.io/

我对“正常”图的示例没有意见,但我想知道我是否也能够创建散点图。 我在文档中找不到提到散点图的内容。

示例代码片段会很棒。

Vec x = { 1, 2, 3 };
Vec y = { 4, 5, 6 };

Plot plot;
  
plot.drawPoints(x, y).pointType(0);

plot.show();