Package edu.cmu.tetrad.data
Interface IDataReader
public interface IDataReader
Identifies a class that can read data from a file.
- Author:
- josephramsey
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setDelimiter
(DelimiterType delimiterType) The delimiter between entries in a line, one of DelimiterType.WHITESPACE, DelimiterType.TAB, DelimiterType.COMMA, DelimiterType.COLONvoid
setIdLabel
(String caseIdsLabel) Deprecated.void
setIdsSupplied
(boolean caseIdsPresent) Deprecated.
-
Method Details
-
setDelimiter
The delimiter between entries in a line, one of DelimiterType.WHITESPACE, DelimiterType.TAB, DelimiterType.COMMA, DelimiterType.COLON -
setIdsSupplied
void setIdsSupplied(boolean caseIdsPresent) Deprecated.True if case IDs are provided in the first column of the data. -
setIdLabel
Deprecated.The String identifier of the case ID column.
-