예제 #1
0
 /// Displays data as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis. QuantileArray for seriesY produces a box-and-whiskers plot.
 public static PlotInfo Markers(double[] seriesX, QuantileArray seriesY, MarkersColor color = null,
                                string colorPalette = null, MarkersSize size   = null, MarkersSizePalette sizePalette = null,
                                MarkersShape shape  = null, string borderColor = null, string displayName             = null, MarkersTitles titles = null) =>
 Plot.markers(MarkersX.NewValues(seriesX), MarkersY.NewUncertainValues(seriesY), Helpers.Opt(color), Helpers.Opt(colorPalette), Helpers.Opt(size), Helpers.Opt(sizePalette), Helpers.Opt(shape), Helpers.Opt(borderColor), Helpers.Opt(displayName), Helpers.Opt(titles));
예제 #2
0
 /// Displays data as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.
 public static PlotInfo Markers(double[] seriesX, double[] seriesY, MarkersColor color = null,
                                string colorPalette = null, MarkersSize size   = null, MarkersSizePalette sizePalette = null,
                                MarkersShape shape  = null, string borderColor = null, string displayName             = null, MarkersTitles titles = null) =>
 Plot.markers(seriesX, seriesY, Helpers.Opt(color), Helpers.Opt(colorPalette), Helpers.Opt(size), Helpers.Opt(sizePalette), Helpers.Opt(shape), Helpers.Opt(borderColor), Helpers.Opt(displayName), Helpers.Opt(titles));