Package edu.cmu.tetrad.search.utils
Class TsUtils
java.lang.Object
edu.cmu.tetrad.search.utils.TsUtils
Contains some utilities for doing autoregression. Should probably be improved by somebody.
- Version:
- $Id: $Id
- Author:
- josephramsey, danielmalinsky (some improvements)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Gives a result consisting of the residuals and collapsed var graphs. -
Method Summary
Modifier and TypeMethodDescriptionstatic DataSet
Creates new time series dataset from the given one with index variable (e.g., time)static boolean
allEigenvaluesAreSmallerThanOneInModulus.static DataSet
ar.static DataSet
ar2.static DataSet
createLagData
(DataSet data, int numLags) Creates new time series dataset from the given one (fixed to deal with mixed datasets)static DataSet
createShiftedData
(DataSet data, int[] shifts) createShiftedData.static DataSet
difference
(DataSet data, int d) Calculates the dth difference of the given data.static int
getIndex.static Knowledge
getKnowledge
(Graph graph) getKnowledge.static int
getLag.static String
getNameNoLag
(Object obj) getNameNoLag.static String
getPrefix.static double[]
getSelfLoopCoefs
(DataSet timeSeries) getSelfLoopCoefs.static TimeLagGraph
graphToLagGraph
(Graph _graph, int numLags) graphToLagGraph.static TsUtils.VarResult
structuralVar
(DataSet timeSeries, int numLags) structuralVar.static double
sumOfArCoefficients
(DataSet timeSeries, int numLags) sumOfArCoefficients.
-
Method Details
-
ar
ar.
- Parameters:
timeSeries
- aDataSet
objectnumLags
- a int- Returns:
- the VAR residuals of the given time series with the given number of lags. That is, every variable at the model lag is regressed onto every variable at previous lags, up to the given number of lags, and the residuals of these regressions for each variable are returned.
-
ar2
-
structuralVar
public static TsUtils.VarResult structuralVar(DataSet timeSeries, int numLags) throws InterruptedException structuralVar.
- Parameters:
timeSeries
- aDataSet
objectnumLags
- a int- Returns:
- a
TsUtils.VarResult
object - Throws:
InterruptedException
-
createShiftedData
-
getSelfLoopCoefs
-
sumOfArCoefficients
-
difference
Calculates the dth difference of the given data. If d = 0, the original data is returned. If d = 1, the data (with one fewer rows) is returned, with each row subtracted from its successor. If d = 1, the same operation is applied to the result of d = 1. And so on.- Parameters:
data
- the data to be differenced.d
- the number of differences to take, >= 0.- Returns:
- the differenced data.
-
createLagData
-
addIndex
-
graphToLagGraph
graphToLagGraph.
- Parameters:
_graph
- aGraph
objectnumLags
- a int- Returns:
- a
TimeLagGraph
object
-
getNameNoLag
-
getPrefix
-
getIndex
-
getLag
-
getKnowledge
-
allEigenvaluesAreSmallerThanOneInModulus
-