applied-ai-018's picture
Add files using upload-large-folder tool
62170da verified
raw
history blame
172 Bytes
from collections import namedtuple
ConfidenceInterval = namedtuple("ConfidenceInterval", ["low", "high"])
ConfidenceInterval. __doc__ = "Class for confidence intervals."