We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to bin the a variable twice, but with different binning in the same dataframe so in the processing sequence there is
dataframe: binning: - {in: var1, out: name1, bins: {low: -100000, high: 100000, nbins: 200}} - {in: var1, out: name2, bins: {low: -500, high: 500, nbins: 1000}}
The resulting csv only uses the binning for name2
name2
Current work around is to add a Define stage but this won't scale very well.
Define
make_more_vars: variables: - var2: {formula: var1} dataframe: binning: - {in: var1, bins: {low: -100000, high: 100000, nbins: 200}} - {in: var2, bins: {low: -500, high: 500, nbins: 1000}}
Could the BinnedDataframe stage be adapted to allow for the first approach to work?
BinnedDataframe
The text was updated successfully, but these errors were encountered:
kreczko
No branches or pull requests
I want to bin the a variable twice, but with different binning in the same dataframe
so in the processing sequence there is
The resulting csv only uses the binning for
name2
Current work around is to add a
Define
stage but this won't scale very well.Could the
BinnedDataframe
stage be adapted to allow for the first approach to work?The text was updated successfully, but these errors were encountered: