You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use SamplePath (List[SamplePosition]) to identify the location of a data value within a Sample. (Nested Functions add to the list.)
We've been able to support the idea of a ConstantFunction that allows us to have a Dataset with a single constant data value in a 0-arity Sample (empty list of domain values). DataType.getPath currently returns an empty SamplePath for a single Scalar and breaks with a MatchError for Tuple. These should be able to point to the appropriate RangePosition of the 0-arity Sample.
The text was updated successfully, but these errors were encountered:
We use
SamplePath
(List[SamplePosition]
) to identify the location of a data value within aSample
. (Nested Functions add to the list.)We've been able to support the idea of a
ConstantFunction
that allows us to have aDataset
with a single constant data value in a 0-aritySample
(empty list of domain values).DataType.getPath
currently returns an emptySamplePath
for a singleScalar
and breaks with aMatchError
forTuple
. These should be able to point to the appropriateRangePosition
of the 0-aritySample
.The text was updated successfully, but these errors were encountered: