Package weka.gui.visualize

Examples of weka.gui.visualize.MatrixPanel


    setUpFinal();
  }

  protected void setUpFinal() {
    if (m_matrixPanel == null) {
      m_matrixPanel = new MatrixPanel();
    }
    add(m_matrixPanel, BorderLayout.CENTER);
  }
View Full Code Here


    if (request.compareTo("Show plot") == 0) {
      try {
  // popup matrix panel
  if (!m_framePoppedUp) {
    m_framePoppedUp = true;
    final MatrixPanel vis = new MatrixPanel();
    vis.setInstances(m_visualizeDataSet);

    final javax.swing.JFrame jf =
      new javax.swing.JFrame(Messages.getInstance().getString("ScatterPlotMatrix_PerformRequest_Jf_JFrame_Text"));
    jf.setSize(800,600);
    jf.getContentPane().setLayout(new BorderLayout());
View Full Code Here

   *
   * @param ti          the Instances to display
   */
  protected void visualizeTransformedData(Instances ti) {
    if (ti != null) {
      MatrixPanel mp = new MatrixPanel();
      mp.setInstances(ti);
      String plotName = ti.relationName();
      final javax.swing.JFrame jf =
  new javax.swing.JFrame(Messages.getInstance().getString("AttributeSelectionPanel_VisualizeTransformedData_JFrame_Text")
             +plotName);
      jf.setSize(800,600);
View Full Code Here

    setUpFinal();
  }

  protected void setUpFinal() {
    if (m_matrixPanel == null) {
      m_matrixPanel = new MatrixPanel();
    }
    add(m_matrixPanel, BorderLayout.CENTER);
  }
View Full Code Here

    if (request.compareTo("Show plot") == 0) {
      try {
  // popup matrix panel
  if (!m_framePoppedUp) {
    m_framePoppedUp = true;
    final MatrixPanel vis = new MatrixPanel();
    vis.setInstances(m_visualizeDataSet);

    final javax.swing.JFrame jf =
      new javax.swing.JFrame("Visualize");
    jf.setSize(800,600);
    jf.getContentPane().setLayout(new BorderLayout());
View Full Code Here

   *
   * @param ti          the Instances to display
   */
  protected void visualizeTransformedData(Instances ti) {
    if (ti != null) {
      MatrixPanel mp = new MatrixPanel();
      mp.setInstances(ti);
      String plotName = ti.relationName();
      final javax.swing.JFrame jf =
  new javax.swing.JFrame("Weka Attribute Selection Visualize: "
             +plotName);
      jf.setSize(800,600);
View Full Code Here

    setUpFinal();
  }

  protected void setUpFinal() {
    if (m_matrixPanel == null) {
      m_matrixPanel = new MatrixPanel();
    }
    add(m_matrixPanel, BorderLayout.CENTER);
  }
View Full Code Here

    if (request.compareTo("Show plot") == 0) {
      try {
  // popup matrix panel
  if (!m_framePoppedUp) {
    m_framePoppedUp = true;
    final MatrixPanel vis = new MatrixPanel();
    vis.setInstances(m_visualizeDataSet);

    final javax.swing.JFrame jf =
      new javax.swing.JFrame("Visualize");
    jf.setSize(800,600);
    jf.getContentPane().setLayout(new BorderLayout());
View Full Code Here

   *
   * @param ti          the Instances to display
   */
  protected void visualizeTransformedData(Instances ti) {
    if (ti != null) {
      MatrixPanel mp = new MatrixPanel();
      mp.setInstances(ti);
      String plotName = ti.relationName();
      final javax.swing.JFrame jf =
  new javax.swing.JFrame("Weka Attribute Selection Visualize: "
             +plotName);
      jf.setSize(800,600);
View Full Code Here

TOP

Related Classes of weka.gui.visualize.MatrixPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.