public interface StataData
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getData()
Method to retrieve the entire 2d array of data
|
java.lang.Object |
getData(java.lang.Integer record)
Method to retrieve a single row of values
|
java.lang.Object |
getData(java.lang.Integer record,
java.lang.Integer var)
Method to retrieve a datum from the dataset object
|
void |
setData()
Method to build the Stata data object
|
void |
setData(java.lang.Number missingValue)
Method to build the Stata data object with user specified missing values
|
java.lang.Object |
toList()
Converts the dataset into a list of variable values nested within a
list of records
|
void setData()
void setData(java.lang.Number missingValue)
missingValue
- The value to use to represent missing datajava.lang.Object getData()
java.lang.Object getData(java.lang.Integer record)
record
- The integer value of the first index in the 2d Arrayjava.lang.Object getData(java.lang.Integer record, java.lang.Integer var)
record
- The integer value of the first index of the 2d arrayvar
- The integer value of the second index of the 2d arrayjava.lang.Object toList()