MCPcopy Create free account
hub / github.com/RolnickLab/climart / stored_values

Method stored_values

climart/data_transform/normalization.py:115–116  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

113 return data
114
115 def stored_values(self):
116 return {'min': self.min, 'max_minus_min': self.max_minus_min}
117
118 def __call__(self, data):
119 return (data - self.min) / self.max_minus_min

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected