public class ItemResponseFileSummary
extends java.lang.Object
| Constructor and Description |
|---|
ItemResponseFileSummary() |
| Modifier and Type | Method and Description |
|---|---|
ItemResponseVector[] |
getCondensedResponseVectors(java.io.File f,
int start,
int nItems,
boolean headerIncluded)
Summarize comma delimited file.
|
ItemResponseVector[] |
getResponseVectors(java.io.File f,
boolean headerIncluded) |
ItemResponseVector[] |
getResponseVectors(java.io.File f,
int start,
int nItems,
boolean headerIncluded)
Reads a comma delimited file.
|
ItemResponseVector[] |
getResponseVectors(java.lang.String fileName,
boolean headerIncluded) |
public ItemResponseVector[] getResponseVectors(java.lang.String fileName, boolean headerIncluded)
public ItemResponseVector[] getResponseVectors(java.io.File f, boolean headerIncluded)
public ItemResponseVector[] getResponseVectors(java.io.File f, int start, int nItems, boolean headerIncluded)
f - file to be summarizedheaderIncluded - true if header included. False otherwise. The header will be omitted (ignored).public ItemResponseVector[] getCondensedResponseVectors(java.io.File f, int start, int nItems, boolean headerIncluded)
f - file to summarizestart - the column index of the first item. It is zero based. If teh data start in the first column, then start=0.nItems - number of items to read from the file. It will begin at the column indicated by start.headerIncluded - true if header is included. False otherwise. The header will be omitted.