We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea0f14 commit d213499Copy full SHA for d213499
1 file changed
inflammation/models.py
@@ -19,16 +19,16 @@ def load_csv(filename):
19
20
21
def daily_mean(data):
22
- """Calculate the daily mean of a 2d inflammation data array."""
+ """Calculate the daily mean of a 2D inflammation data array."""
23
return np.mean(data, axis=0)
24
25
26
def daily_max(data):
27
- """Calculate the daily max of a 2d inflammation data array."""
+ """Calculate the daily max of a 2D inflammation data array."""
28
return np.max(data, axis=0)
29
30
31
def daily_min(data):
32
- """Calculate the daily min of a 2d inflammation data array."""
+ """Calculate the daily min of a 2D inflammation data array."""
33
return np.min(data, axis=0)
34
0 commit comments