edu.cmu.tetradapp.model.GraphComparisonParams Maven / Gradle / Ivy
///////////////////////////////////////////////////////////////////////////////
// For information as to what this class does, see the Javadoc, below. //
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, //
// 2007, 2008, 2009, 2010, 2014, 2015, 2022 by Peter Spirtes, Richard //
// Scheines, Joseph Ramsey, and Clark Glymour. //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //
///////////////////////////////////////////////////////////////////////////////
package edu.cmu.tetradapp.model;
import edu.cmu.tetrad.data.BoxDataSet;
import edu.cmu.tetrad.data.ContinuousVariable;
import edu.cmu.tetrad.data.DataSet;
import edu.cmu.tetrad.data.VerticalDoubleDataBox;
import edu.cmu.tetrad.graph.GraphUtils;
import edu.cmu.tetrad.graph.Node;
import edu.cmu.tetrad.session.ExecutionRestarter;
import edu.cmu.tetrad.session.SessionAdapter;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.text.DecimalFormat;
import java.util.LinkedList;
import java.util.List;
/**
* Stores a reference to a file to which records can be appended.
*
* @author josephramsey
*/
public class GraphComparisonParams extends SessionAdapter
implements ExecutionRestarter {
private static final long serialVersionUID = 23L;
/**
* The data set to which records are appended.
*
* @serial Cannot be null.
*/
private DataSet dataSet;
/**
* True iff the data table should be reset every time. Must be true by default so dataSet will be initialized.
*
* @serial True, false both OK.
*/
private boolean resetTableOnExecute = true;
/**
* True if the user wants to compare with the exact reference graph instead of removing the latent variables.
*
* @serial True, false both OK.
*/
private boolean keepLatents;
/**
* The name of the session model that has the true graph in it.
*
* @serial Can be null.
*/
private String referenceGraphName;
/**
* The name of the session model that has the true graph in it.
*
* @serial Can be null.
*/
private String targetGraphName;
//===========================CONSTRUCTORS============================//
/**
* Constructs a getMappings object with no file set.
*/
private GraphComparisonParams() {
newExecution();
}
/**
* Generates a simple exemplar of this class to test serialization.
*/
public static GraphComparisonParams serializableInstance() {
return new GraphComparisonParams();
}
//==========================PUBLIC METHODS===========================//
public final void newExecution() {
ContinuousVariable adjCorrect = new ContinuousVariable("ADJ_COR");
ContinuousVariable adjFn = new ContinuousVariable("ADJ_FN");
ContinuousVariable adjFp = new ContinuousVariable("ADJ_FP");
ContinuousVariable arrowptCorrect = new ContinuousVariable("AHD_COR");
ContinuousVariable arrowptFn = new ContinuousVariable("AHD_FN");
ContinuousVariable arrowptFp = new ContinuousVariable("AHD_FP");
ContinuousVariable adjPrec = new ContinuousVariable("ADJ_PREC");
ContinuousVariable adjRec = new ContinuousVariable("ADJ_REC");
ContinuousVariable arrowptPrec = new ContinuousVariable("ARROWPT_PREC");
ContinuousVariable arrowptRec = new ContinuousVariable("ARROWPT_REC");
ContinuousVariable shd = new ContinuousVariable("SHD");
List variables = new LinkedList<>();
variables.add(adjCorrect);
variables.add(adjFn);
variables.add(adjFp);
variables.add(arrowptCorrect);
variables.add(arrowptFn);
variables.add(arrowptFp);
variables.add(adjPrec);
variables.add(adjRec);
variables.add(arrowptPrec);
variables.add(arrowptRec);
variables.add(shd);
this.dataSet = new BoxDataSet(new VerticalDoubleDataBox(0, variables.size()), variables);
this.dataSet.setNumberFormat(new DecimalFormat("0"));
}
public void addRecord(GraphUtils.GraphComparison comparison) {
int newRow = this.dataSet.getNumRows();
this.dataSet.setDouble(newRow, 0, comparison.getAdjCor());
this.dataSet.setDouble(newRow, 1, comparison.getAdjFn());
this.dataSet.setDouble(newRow, 2, comparison.getAdjFp());
this.dataSet.setDouble(newRow, 3, comparison.getAhdCor());
this.dataSet.setDouble(newRow, 4, comparison.getAhdFn());
this.dataSet.setDouble(newRow, 5, comparison.getAhdFp());
this.dataSet.setDouble(newRow, 6, comparison.getAdjPrec());
this.dataSet.setDouble(newRow, 7, comparison.getAdjRec());
this.dataSet.setDouble(newRow, 8, comparison.getAhdPrec());
this.dataSet.setDouble(newRow, 9, comparison.getAhdRec());
this.dataSet.setDouble(newRow, 10, comparison.getShd());
}
public DataSet getDataSet() {
return this.dataSet;
}
public boolean isResetTableOnExecute() {
return this.resetTableOnExecute;
}
public void setResetTableOnExecute(boolean resetTableOnExecute) {
this.resetTableOnExecute = resetTableOnExecute;
}
public boolean isKeepLatents() {
return this.keepLatents;
}
public void setKeepLatents(boolean keepLatents) {
this.keepLatents = keepLatents;
}
public String getReferenceGraphName() {
return this.referenceGraphName;
}
public void setReferenceGraphName(String name) {
this.referenceGraphName = name;
}
/**
* Adds semantic checks to the default deserialization method. This method must have the standard signature for a
* readObject method, and the body of the method must begin with "s.defaultReadObject();". Other than that, any
* semantic checks can be specified and do not need to stay the same from version to version. A readObject method of
* this form may be added to any class, even if Tetrad sessions were previously saved out using a version of the
* class that didn't include it. (That's what the "s.defaultReadObject();" is for. See J. Bloch, Effective Java, for
* help.
*/
private void readObject(ObjectInputStream s)
throws IOException, ClassNotFoundException {
s.defaultReadObject();
}
public String getTargetGraphName() {
return this.targetGraphName;
}
public void setTargetGraphName(String targetGraphName) {
this.targetGraphName = targetGraphName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy