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

HYPER_bins formula (from preprocessing_step_4_binning) #16

Open
bezigon opened this issue Jun 29, 2018 · 0 comments
Open

HYPER_bins formula (from preprocessing_step_4_binning) #16

bezigon opened this issue Jun 29, 2018 · 0 comments

Comments

@bezigon
Copy link

bezigon commented Jun 29, 2018

HYPER_bins on which formula is based? Intuitively?

I found a formula that can automate this process:

def histedges_equalN(x, nbin):
    npt = len(x)
    return np.interp(np.linspace(0, npt, nbin + 1),
                     np.arange(npt),
                     np.sort(x))
HYPER_bins=histedges_equalN(df_pruned.word2id_len, 8)

Am I in the right direction?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant