Class BossDot
java.lang.Object
edu.cmu.tetrad.algcomparison.algorithm.AbstractBootstrapAlgorithm
edu.cmu.tetrad.algcomparison.algorithm.oracle.pag.BossDot
- All Implemented Interfaces:
- Algorithm,- ReturnsBootstrapGraphs,- TakesCovarianceMatrix,- HasKnowledge,- HasParameters,- UsesScoreWrapper,- TetradSerializable,- Serializable
@Algorithm(name="BOSS-POD",
           command="BOSS-POD",
           algoType=allow_latent_common_causes)
@Bootstrapping
@Experimental
public class BossDot
extends AbstractBootstrapAlgorithm
implements Algorithm, UsesScoreWrapper, HasKnowledge, ReturnsBootstrapGraphs, TakesCovarianceMatrix
This class represents the FCIT algorithm, which is an implementation of the FGES-FCI algorithm for learning causal
 structures from observational data using the BOSS algorithm as an initial CPDAG and using all score-based steps
 afterward.
- Author:
- josephramsey
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBossDot()This class represents LV-Dumb algorithm.BossDot(ScoreWrapper score) FCIT is a class that represents a FCIT algorithm.
- 
Method SummaryModifier and TypeMethodDescriptiongetComparisonGraph(Graph graph) Retrieves a comparison graph by transforming a true directed graph into a partially directed graph (PAG).Retrieves the data type required by the search algorithm.Returns a short, one-line description of this algorithm.Retrieves the knowledge object associated with this method.Retrieves the list of parameters used by the algorithm.Retrieves the ScoreWrapper object associated with this method.runSearch(DataModel dataModel, Parameters parameters) Runs the search algorithm to find a graph structure based on a given data model and parameters.voidsetKnowledge(Knowledge knowledge) Sets the knowledge object associated with this method.voidsetScoreWrapper(ScoreWrapper score) Sets the score wrapper for the algorithm.Methods inherited from class edu.cmu.tetrad.algcomparison.algorithm.AbstractBootstrapAlgorithmgetBootstrapGraphs, searchMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface edu.cmu.tetrad.algcomparison.algorithm.ReturnsBootstrapGraphsgetBootstrapGraphs
- 
Constructor Details- 
BossDotpublic BossDot()This class represents LV-Dumb algorithm.The FCIT algorithm is a bootstrap algorithm that runs a search algorithm to find a graph structure based on a given data set and parameters. It is a subclass of the Abstract BootstrapAlgorithm class and implements the Algorithm interface. - See Also:
 
- 
BossDotFCIT is a class that represents a FCIT algorithm.The FCIT algorithm is a bootstrap algorithm that runs a search algorithm to find a graph structure based on a given data set and parameters. It is a subclass of the AbstractBootstrapAlgorithm class and implements the Algorithm interface. - Parameters:
- score- The score to use.
- See Also:
 
 
- 
- 
Method Details- 
runSearchRuns the search algorithm to find a graph structure based on a given data model and parameters.- Parameters:
- dataModel- The data model to use for the search algorithm.
- parameters- The parameters to configure the search algorithm.
- Returns:
- The resulting graph structure.
- Throws:
- IllegalArgumentException- if the time lag is greater than 0 and the data model is not an instance of DataSet.
 
- 
getComparisonGraphRetrieves a comparison graph by transforming a true directed graph into a partially directed graph (PAG).- Specified by:
- getComparisonGraphin interface- Algorithm
- Parameters:
- graph- The true, directed graph, if there is one.
- Returns:
- The comparison graph.
 
- 
getDescriptionReturns a short, one-line description of this algorithm. The description is generated by concatenating the descriptions of the test and score objects associated with this algorithm.- Specified by:
- getDescriptionin interface- Algorithm
- Returns:
- The description of this algorithm.
 
- 
getDataTypeRetrieves the data type required by the search algorithm.- Specified by:
- getDataTypein interface- Algorithm
- Returns:
- The data type required by the search algorithm.
 
- 
getParametersRetrieves the list of parameters used by the algorithm.- Specified by:
- getParametersin interface- HasParameters
- Returns:
- The list of parameters used by the algorithm.
 
- 
getKnowledgeRetrieves the knowledge object associated with this method.- Specified by:
- getKnowledgein interface- HasKnowledge
- Returns:
- The knowledge object.
 
- 
setKnowledgeSets the knowledge object associated with this method.- Specified by:
- setKnowledgein interface- HasKnowledge
- Parameters:
- knowledge- the knowledge object to be set
 
- 
getScoreWrapperRetrieves the ScoreWrapper object associated with this method.- Specified by:
- getScoreWrapperin interface- UsesScoreWrapper
- Returns:
- The ScoreWrapper object associated with this method.
 
- 
setScoreWrapperSets the score wrapper for the algorithm.- Specified by:
- setScoreWrapperin interface- UsesScoreWrapper
- Parameters:
- score- the score wrapper.
 
 
-