Extracts raw X and Y data from the points detected in a scatter-plot figure.
figure_extractDetectedPoints(
aDetectedPlot,
xAxis = NULL,
yAxis = NULL,
X_min = NULL,
X_max = NULL,
Y_min = NULL,
Y_max = NULL,
summarize = TRUE
)
A binary figure image with detected points (an
EBImage
object). See: figure_detectAllPoints
A binary figure image with detected X-axis (an EBImage
object). See: figure_detectAxis
.
A binary figure image with detected Y-axis (an EBImage
object). See: figure_detectAxis
.
The minimum value of X reported on the figure X-axis.
The maximum value of X reported on the figure X-axis.
The minimum value of Y reported on the figure Y-axis.
The maximum value of Y reported on the figure Y-axis.
When TRUE
returns a summary of the regression
parameters (intercept + slope * X), R-squared, Pearson's product moment
correlation coefficient (r), and its variance (var_r) and sample size (N).
A data frame with the extracted X and Y values.