In either of these two, it is not explained at all what the shape and ordering of the dependent variable is -- that is, using the description in the documentation:
table = Table()
x = Variable("Variable on the x axis",
is_independent=True,
is_binned=True)
# x.values = [ ... ]
y = Variable("Variable on the y axis",
is_independent=True,
is_binned=True)
# y.values = [ ... ]
v1 = Variable("A variable depending on x and y",
is_independent=False,
is_binned=False)
# v1.values = [ ... ]
correlation.rootfile]In either of these two, it is not explained at all what the shape and ordering of the dependent variable is -- that is, using the description in the documentation:
does that mean
v1is a 2-dimensional value? Or a 1-dimensional flattened list? If x has M and y has N, then v1 has to have up to M*N values -- but how do you actually describe the matrix? I don't see this described anywhere in the documentation.