Skip to content

Commit 67e3699

Browse files
author
miranov25
committed
* adding __init__.py
1 parent c3d3617 commit 67e3699

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

UTILS/dfextensions/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# __init__.py
2+
3+
from .AliasDataFrame import AliasDataFrame
4+
from .FormulaLinearModel import FormulaLinearModel
5+
from .DataFrameUtils import * # if it provides general helper functions
6+
from .groupby_regression import * # or other relevant functions
7+
8+
__all__ = [
9+
"AliasDataFrame",
10+
"FormulaLinearModel",
11+
"GroupByRegressor"
12+
]

0 commit comments

Comments
 (0)