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