... | @@ -485,9 +485,9 @@ choices: |
... | @@ -485,9 +485,9 @@ choices: |
|
- by row (student)
|
|
- by row (student)
|
|
|
|
|
|
```python
|
|
```python
|
|
avg_by_student = grades.mean(axis=1)
|
|
avg_by_student = grades.mean(axis=1)
|
|
min_by_student = grades.min(axis=1)
|
|
min_by_student = grades.min(axis=1)
|
|
max_by_student = grades.max(axis=1)
|
|
max_by_student = grades.max(axis=1)
|
|
```
|
|
```
|
|
|
|
|
|
| Name | Avg | Min | Max |
|
|
| Name | Avg | Min | Max |
|
... | @@ -499,9 +499,9 @@ choices: |
... | @@ -499,9 +499,9 @@ choices: |
|
- by column (exercise)
|
|
- by column (exercise)
|
|
|
|
|
|
```python
|
|
```python
|
|
avg_by_exercise = grades.mean(axis=0)
|
|
avg_by_exercise = grades.mean(axis=0)
|
|
max_by_exercise = grades.max(axis=0)
|
|
max_by_exercise = grades.max(axis=0)
|
|
std_by_exercise = grades.std(axis=0)
|
|
std_by_exercise = grades.std(axis=0)
|
|
```
|
|
```
|
|
|
|
|
|
| Exercise | Avg | Max | Std Dev |
|
|
| Exercise | Avg | Max | Std Dev |
|
... | | ... | |