The intercept term of the fit line.
The slope of the fit line.
The correlation between the predictions made by the regression and the actual values.
The R^2 value of the fit line.
Compute the regression coefficients and create a best-fit line, where x is the independent variable and y is the dependent variable. lowerLim and upperLim control how far the best-fit line is extended in each direction along the X-axis. By default the line is extended between the minimum and maximum values of x.
The color of the line. The default is black.
Setter
The width of the line. The default is 1.
Setter
Error bar width, relative to the total width of the plot. Must be between 0 and 1. If it's out of bounds, it will be set to the default of 0.05. If no error bars are to be drawn, this option is ignored.
Setter
The symbol that should be used to denote a data point. Setting this to ' ' (a space) turns off point symbols and plots the line only. By default the point symbol is a space, so no point symbol is plotted..
Setter
The color of each point on the plot.
Setter.
The size of a point. (Default 20).
Setter
Factory method for creating a LineGraph. x and y must both be input ranges of the same length, with elements implicitly convertible to doubles. Note that they are copied inside the factory, so changes to the original ranges after calling this factory will not affect the plot.
Convenience factory method that produces a LineGraph with a default X axis numbered 1, 2, ..., N, where N is the number of data points, and no error bars. This is mostly useful for quick and dirty plots.
Create a LineGraph with error bars. lowerErrors and upperErrors must be input ranges with elements implicitly convertible to double for error bars to be shown. Any other value, such as null or 0, will result in no error bars being shown. Therefore, to only show, for example, upper erros, simply pass in null or 0 for the lower errors.
Scale this object by a factor of scaleFactor in the X direction. This is useful for getting it onto the same scale as another plot.
Scale this object by a factor of scaleFactor in the Y direction. * This is useful for getting it onto the same scale as another plot.
Shift this graph by shiftBy units in the X direction. This is useful for getting it onto the same scale as another plot.
Shift this graph by shiftBy units in the Y direction. This is useful for getting it onto the same scale as another plot.
This class creates a best-fit line, and is useful for adding to scatter plot figures. The default line color is red instead of black and the default width is two instead of one to make the best-fit line stand out against the default scatter plot settings.