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
4.1.2
>>> import uproot >>> import awkward as ak >>> f = uproot.recreate("whatever.root") >>> a = ak.Array([[1, 2, 3], [4, 5, 6]]) >>> f["tree"] = {"branch": a} >>> f["tree"].show() name | typename | interpretation ---------------------+--------------------------+------------------------------- branch | int64_t[3] | AsDtype("('>i8', (3,))")
That should be a branch of type int64_t[] with a counter nbranch because the array type is
int64_t[]
nbranch
2 * var * int64
not
2 * 3 * int64
It doesn't matter that both lists happen to have the same length. (In a subsequent batch, they might not.)
The text was updated successfully, but these errors were encountered:
Fixes #439 by checking for an Awkward Array before NumPy.
f509421
Fixes #439 by checking for an Awkward Array before NumPy. (#453)
8d08bcf
Successfully merging a pull request may close this issue.
4.1.2
That should be a branch of type
int64_t[]
with a counternbranch
because the array type isnot
It doesn't matter that both lists happen to have the same length. (In a subsequent batch, they might not.)
The text was updated successfully, but these errors were encountered: