Uses of Class
dev.nm.stat.regression.linear.panel.PanelData.Row
-
Packages that use PanelData.Row Package Description dev.nm.stat.regression.linear.panel -
-
Uses of PanelData.Row in dev.nm.stat.regression.linear.panel
Methods in dev.nm.stat.regression.linear.panel that return PanelData.Row Modifier and Type Method Description PanelData.Row
PanelData. getRow(S subject, T time)
Gets one particular row indexed by a pair of subject and time.Methods in dev.nm.stat.regression.linear.panel that return types with arguments of type PanelData.Row Modifier and Type Method Description List<PanelData.Row>
PanelData. getRows()
Gets all of the panel data.List<PanelData.Row>
PanelData. getRowsForSubject(S subject)
Get all the rows pertaining to a particular subject.Methods in dev.nm.stat.regression.linear.panel with parameters of type PanelData.Row Modifier and Type Method Description void
PanelData. addRow(PanelData.Row row)
Inserts a row of data into the panel.int
PanelData.Row. compareTo(PanelData.Row that)
Method parameters in dev.nm.stat.regression.linear.panel with type arguments of type PanelData.Row Modifier and Type Method Description double[][]
PanelData. getPanelValuesByHeaders(List<PanelData.Row> rows)
Gets the values from a panel data.double[][]
PanelData. getPanelValuesByHeaders(List<PanelData.Row> rows, String[] headers)
Gets the values from a panel data.double[][]
PanelData. getPanelValuesByHeaders(List<PanelData.Row> rows, String[] headers, PanelData.Transformation[] transformations)
Gets the (transformed) values from a panel data.double[][]
PanelData. getPanelValuesByTime(List<PanelData.Row> rows)
Gets the (transformed) values from a panel data.double[][]
PanelData. getPanelValuesByTime(List<PanelData.Row> rows, String[] headers, PanelData.Transformation[] transformations)
Gets the (transformed) values from a panel data.
-