Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relative import of sub-modules #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions scorecardpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# -*- coding:utf-8 -*-

from scorecardpy.germancredit import germancredit
from scorecardpy.split_df import split_df
from scorecardpy.info_value import iv
from .germancredit import germancredit
from .split_df import split_df
from .info_value import iv
# from .info_ent_indx_gini import (ig, ie)
from scorecardpy.var_filter import var_filter
from scorecardpy.woebin import (woebin, woebin_ply, woebin_plot, woebin_adj)
from scorecardpy.perf import (perf_eva, perf_psi)
from scorecardpy.scorecard import (scorecard, scorecard_ply)
from scorecardpy.one_hot import one_hot
from scorecardpy.vif import vif
from .var_filter import var_filter
from .woebin import (woebin, woebin_ply, woebin_plot, woebin_adj)
from .perf import (perf_eva, perf_psi)
from .scorecard import (scorecard, scorecard_ply)
from .one_hot import one_hot
from .vif import vif


__version__ = '0.1.9.3'
Expand Down