Skip to main content

panel_between

Perform a Between estimator regression on panel data.

The Between estimator for regression analysis on panel data is focusing on the differences between entities (such as individuals, companies, or countries) over time. By aggregating the data for each entity and analyzing the average outcomes, this method provides insights into the overall impact of explanatory variables (x_columns) on the dependent variable (y_column) across all entities.

Parameters

data: ForwardRef('Data') | ForwardRef('DataFrame') | ForwardRef('Series') | ForwardRef('ndarray') | dict | list
y_column: str
x_columns: list[str]


Returns

results: dict

Serializable results.

provider: str

Provider name.

warnings: Optional[list[Warning_]]

list of warnings.

chart: Optional[Chart]

Chart object.

extra: dict[str, Any]

Extra info.


On this page