Skip to main content

get_regression_data

This function creates a DataFrame with the required regression data as

Source Code: [link]

openbb.econometrics.get_regression_data(regression_variables: List[tuple], data: Dict[str, pd.DataFrame], regression_type: str = "")

Parameters

NameTypeDescriptionDefaultOptional
regression_variableslistThe regressions variables entered where the first variable is
the dependent variable.
NoneFalse
datadictA dictionary containing the datasets.NoneFalse
regression_typestrThe type of regression that is executed.True

Returns

TypeDescription
Tuple[DataFrame, Any, List[Any]]The dataset used,
Dependent variable,
Independent variable,
OLS model.