Skip to content

Commit 8a48786

Browse files
committed
Fenced info - correct now?
1 parent 64133a0 commit 8a48786

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

docs/07-dicts.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ genes = {
6363
genes["erythroid"]
6464
```
6565

66-
This is often clearer when working with biological concepts.
66+
This is often clearer when working with biological data where the raw information is paired with additional metadata.
67+
6768

6869
---
6970

@@ -159,6 +160,8 @@ for key, value in experiment.items():
159160

160161
---
161162

163+
Python packages like scanpy also store a lot of the informations in dictionaries. The ``uns`` slot int an anndata objects is a dictionary and containe e.g. color information for the grouping or in ``uns_m`` the neighbor information needed for the UMAP algorithm.
164+
162165
# Exercise
163166

164167
1. Create a dictionary called `dataset` with:

docs/15-kmeans-project.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ The most important calculation will be the eucledian distance.
145145
Implement your own ``dist( vec1, vec2)`` function.
146146

147147
??? You can compare yours to this after you are finished
148-
149148
```python
150149
def dist(vec1, vec2):
151150
"""

0 commit comments

Comments
 (0)