Skip to content

Commit

Permalink
comments to final function
Browse files Browse the repository at this point in the history
  • Loading branch information
fraspass committed Jun 23, 2021
1 parent f731a13 commit d1e045d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def lighten_color(color, amount=0.5):
c = colorsys.rgb_to_hls(*mc.to_rgb(c))
return colorsys.hls_to_rgb(c[0], 1 - amount * (1 - c[1]), c[2])

## Relabel based on
## Relabel two vectors such that the number of mismatches is minimised
def relabel_matching(v1, v2):
import numpy as np
import pandas as pd
Expand Down

0 comments on commit d1e045d

Please sign in to comment.