Uses of Class
elki.math.scales.LinearScale
-
Packages that use LinearScale Package Description elki.math.scales Scales handling for plotting.elki.result Result types, representation and handling.elki.visualization.opticsplot Code for drawing OPTICS plots.elki.visualization.projections Visualization projections.elki.visualization.silhouette Code for drawing silhouette plots.elki.visualization.svg Base SVG functionality (generation, markers, thumbnails, export, ...).elki.visualization.visualizers.visunproj Visualizers that do not use a particular projection. -
-
Uses of LinearScale in elki.math.scales
Methods in elki.math.scales that return LinearScale Modifier and Type Method Description static LinearScale[]
Scales. calcScales(Relation<? extends SpatialComparable> rel)
Compute a linear scale for each dimension. -
Uses of LinearScale in elki.result
Fields in elki.result declared as LinearScale Modifier and Type Field Description private LinearScale[]
ScalesResult. scales
The scales in use.Methods in elki.result that return LinearScale Modifier and Type Method Description LinearScale
ScalesResult. getScale(int dim)
Get the scale for dimension dim (starting at 1!).LinearScale[]
ScalesResult. getScales()
Get all scales.Methods in elki.result with parameters of type LinearScale Modifier and Type Method Description void
ScalesResult. setScale(int dim, LinearScale scale)
Set the scale for dimension dim (starting at 1!).Constructors in elki.result with parameters of type LinearScale Constructor Description ScalesResult(LinearScale[] scales)
Constructor. -
Uses of LinearScale in elki.visualization.opticsplot
Fields in elki.visualization.opticsplot declared as LinearScale Modifier and Type Field Description (package private) LinearScale
OPTICSPlot. scale
Scale to useMethods in elki.visualization.opticsplot that return LinearScale Modifier and Type Method Description protected LinearScale
OPTICSPlot. computeScale(ClusterOrder order)
Compute the scale (value range)LinearScale
OPTICSPlot. getScale()
-
Uses of LinearScale in elki.visualization.projections
Fields in elki.visualization.projections declared as LinearScale Modifier and Type Field Description protected LinearScale[]
AbstractProjection. scales
Scales in data setprivate LinearScale[]
SimpleParallel. scales
ScalesMethods in elki.visualization.projections that return LinearScale Modifier and Type Method Description LinearScale
ProjectionParallel. getAxisScale(int axis)
Get scale for the given axisLinearScale
SimpleParallel. getAxisScale(int axis)
LinearScale
AbstractProjection. getScale(int d)
Get the scales used, for rendering scales mostly.LinearScale
OPTICSProjection. getScale(int d)
LinearScale
Projection. getScale(int d)
Get the scale class for a particular dimension.LinearScale
SilhouetteProjection. getScale(int d)
LinearScale
SimpleParallel. getScale(int dim)
Constructors in elki.visualization.projections with parameters of type LinearScale Constructor Description AbstractFullProjection(Projector p, LinearScale[] scales)
Constructor.AbstractProjection(Projector p, LinearScale[] scales)
Constructor.AbstractSimpleProjection(Projector p, LinearScale[] scales)
Constructor.AffineProjection(Projector p, LinearScale[] scales, AffineTransformation proj)
Constructor with a given database and axes.Simple1D(Projector p, LinearScale[] scales, int dnum)
Simple 1D projection using scaling only.Simple2D(Projector p, LinearScale[] scales, int ax1, int ax2)
Constructor with a given database and axes.SimpleParallel(Projector p, LinearScale[] scales)
Constructor. -
Uses of LinearScale in elki.visualization.silhouette
Fields in elki.visualization.silhouette declared as LinearScale Modifier and Type Field Description (package private) LinearScale
SilhouettePlot. scale
Scale to useMethods in elki.visualization.silhouette that return LinearScale Modifier and Type Method Description protected LinearScale
SilhouettePlot. computeScale(DoubleDBIDList[] silhouettes)
Compute the scale (value range)LinearScale
SilhouettePlot. getScale()
-
Uses of LinearScale in elki.visualization.svg
Methods in elki.visualization.svg with parameters of type LinearScale Modifier and Type Method Description static void
SVGSimpleLinearAxis. drawAxis(SVGPlot plot, org.w3c.dom.Element parent, LinearScale scale, double x1, double y1, double x2, double y2, SVGSimpleLinearAxis.LabelStyle labelstyle, StyleLibrary style)
Plot an axis with appropriate scales -
Uses of LinearScale in elki.visualization.visualizers.visunproj
Methods in elki.visualization.visualizers.visunproj with parameters of type LinearScale Modifier and Type Method Description private void
XYCurveVisualization. clipDraw(SVGPath path, XYCurve curve, double preX, double preY, double x, double y, LinearScale scalex, LinearScale scaley, double sizex, double sizey)
Clipped drawing function for an edge.
-