Skip to content

Commit

Permalink
Merge pull request #423 from illumination-k/modify_standrize_function
Browse files Browse the repository at this point in the history
modify _Clustergram._scale function
  • Loading branch information
mkcor authored Nov 21, 2019
2 parents 48334ac + 0928112 commit 2b63dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dash_bio/component_factory/_clustergram.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def __init__(
if log_transform:
self._data = np.log2(self._data)
if standardize in ['row', 'column']:
self._data = self._scale(self._data, standardize)
self._data = self._scale(standardize)

def figure(
self,
Expand Down

0 comments on commit 2b63dea

Please sign in to comment.