-
-
Notifications
You must be signed in to change notification settings - Fork 64
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
Multiple statistics with multiple variables #234
Comments
Can you clarify a bit? I don't think I follow. |
taking this example from docs: itr = (row.variety => parse(Float64, row.sepal_length) for row in rows)
o = GroupBy(String, Hist(4:0.25:8))
fit!(o, itr) What if:
|
You may have to roll a few things on your own. Also, I've been meaning to work on StatsBase-like weights for OnlineStats so maybe this will nudge me to do it. |
in case you want wheels: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know
fit!()
works with an iterator, but what if I need to return multiple pairs of(value, weight)
from the iterator because I want to make many weighted histograms in one pass of the data?The text was updated successfully, but these errors were encountered: