Interface PanelRegression
-
- All Known Implementing Classes:
FixedEffectsModel
public interface PanelRegression
Panel (data) analysis is a statistical method, widely used in social science, epidemiology, and econometrics, which deals with two-dimensional (cross sectional/times series) panel data. The data are usually collected over time and over the same individuals and then a regression is run over these two dimensions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinearModel
getLinearModel(Object subject)
Gets the linear model for a particular subject/individual.
-
-
-
Method Detail
-
getLinearModel
LinearModel getLinearModel(Object subject)
Gets the linear model for a particular subject/individual.- Parameters:
subject
- the subject- Returns:
- the linear model for the subject
-
-