00001 package org.math.plot.plots;
00002
00003 import java.awt.Color;
00004
00005 import javax.swing.JFrame;
00006
00007 import org.math.plot.FrameView;
00008 import org.math.plot.Plot2DPanel;
00009 import org.math.plot.render.AbstractDrawer;
00010 import org.math.plot.utils.Array;
00011
00017 public class QuantileLayerPlot extends LayerPlot {
00018
00019 public static int WIDTH = 2;
00020
00021 int axe;
00022
00023 double quantileRate;
00024
00025 Color gradC;
00026
00027 double main_data_constant = 0;
00028
00029 public boolean symetric = false;
00030
00031 double[] Q;
00032
00033
00034
00035
00036
00037
00038
00039
00040 public QuantileLayerPlot(Plot p, int a, double q, double r, boolean _symetric) {
00041 this(p, a, null, r, true);
00042 main_data_constant = q;
00043 }
00044
00045
00046
00047
00048
00056 public QuantileLayerPlot(Plot p, int a, double[] q, double r, boolean _symetric) {
00057 super(r + " quantile of " + p.name, p);
00058 if (q != null)
00059 Array.checkLength(q, p.getData().length);
00060 Q = q;
00061 axe = a;
00062 quantileRate = r;
00063 symetric = _symetric;
00064
00065 }
00066
00067 public double getQuantilesValue(int numCoord) {
00068 return Q[numCoord];
00069 }
00070
00071 public int getAxe() {
00072 return axe;
00073 }
00074
00075 public double getQuantileRate() {
00076 return quantileRate;
00077 }
00078
00079 public void plot(AbstractDrawer draw, Color c) {
00080 if (!plot.visible)
00081 return;
00082
00083 draw.setColor(c);
00084 gradC = new Color(c.getRed(), c.getGreen(), c.getBlue(), (int) (255 * (1 - quantileRate)));
00085
00086 draw.setLineType(AbstractDrawer.CONTINOUS_LINE);
00087 draw.setLineWidth(WIDTH);
00088 if (main_data_constant == 0)
00089 for (int i = 0; i < plot.getData().length; i++) {
00090 double[] d = Array.getRowCopy(plot.getData(), i);
00091 d[axe] += Q[i];
00092 draw.setGradient(plot.getData()[i], c, d, gradC);
00093 draw.drawLine(plot.getData()[i], d);
00094
00095
00096 if (symetric) {
00097 d[axe] -= 2 * Q[i];
00098 draw.setGradient(plot.getData()[i], c, d, gradC);
00099 draw.drawLine(plot.getData()[i], d);
00100
00101 }
00102 }
00103 else
00104 for (int i = 0; i < plot.getData().length; i++) {
00105 double[] d = Array.getRowCopy(plot.getData(), i);
00106 d[axe] += main_data_constant;
00107 draw.setGradient(plot.getData()[i], c, d, gradC);
00108 draw.drawLine(plot.getData()[i], d);
00109
00110
00111 if (symetric) {
00112 d[axe] -= 2 * main_data_constant;
00113 draw.setGradient(plot.getData()[i], c, d, gradC);
00114 draw.drawLine(plot.getData()[i], d);
00115
00116 }
00117 }
00118 draw.resetGradient();
00119 draw.setLineWidth(AbstractDrawer.DEFAULT_LINE_WIDTH);
00120
00121 }
00122
00123 @Override
00124 public void setData(double[][] d) {
00125 Q = d[0];
00126 }
00127
00128 @Override
00129 public double[][] getData() {
00130 return new double[][] { Q };
00131 }
00132
00133 public static void main(String[] args) {
00134 Plot2DPanel p2 = new Plot2DPanel();
00135 for (int i = 0; i < 1; i++) {
00136 double[][] XYZ = new double[10][2];
00137 for (int j = 0; j < XYZ.length; j++) {
00138 XYZ[j][0] = Math.random();
00139 XYZ[j][1] = Math.random();
00140 }
00141 p2.addScatterPlot("toto" + i, XYZ);
00142 }
00143 p2.addQuantiletoPlot(0, 1, 1.0, true, 0.2);
00144 new FrameView(p2).setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
00145 }
00146 }