Scatter plot implementation module
Provides efficient scatter plot functionality following SOLID principles. Uses single plot object for performance, not O(n) individual points.
Add a single efficient scatter plot object Properly handles thousands of points with single plot object
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(plot_data_t), | intent(inout), | allocatable | :: | plots(:) | ||
integer, | intent(inout) | :: | plot_count | |||
real(kind=wp), | intent(in) | :: | x(:) | |||
real(kind=wp), | intent(in) | :: | y(:) | |||
real(kind=wp), | intent(in), | optional | :: | s(:) | ||
real(kind=wp), | intent(in), | optional | :: | c(:) | ||
character(len=*), | intent(in), | optional | :: | marker | ||
real(kind=wp), | intent(in), | optional | :: | markersize | ||
real(kind=wp), | intent(in), | optional | :: | color(3) | ||
character(len=*), | intent(in), | optional | :: | colormap | ||
real(kind=wp), | intent(in), | optional | :: | alpha | ||
real(kind=wp), | intent(in), | optional | :: | edgecolor(3) | ||
real(kind=wp), | intent(in), | optional | :: | facecolor(3) | ||
real(kind=wp), | intent(in), | optional | :: | linewidth | ||
real(kind=wp), | intent(in), | optional | :: | vmin | ||
real(kind=wp), | intent(in), | optional | :: | vmax | ||
character(len=*), | intent(in), | optional | :: | label | ||
logical, | intent(in), | optional | :: | show_colorbar | ||
real(kind=wp), | intent(in), | optional | :: | default_color(3) |