Created
November 17, 2011 00:25
-
-
Save stefanv/1371985 to your computer and use it in GitHub Desktop.
Revisions
-
stefanv revised this gist
Nov 17, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/usr/bin/python # coding=utf-8 # Python version of Zach Holman's "spark" # https://github.com/holman/spark # by Stefan van der Walt <[email protected]> -
stefanv created this gist
Nov 17, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ #!/usr/bin/python # coding=utf-8 # Python version of Zach Holman's "spark: # https://github.com/holman/spark # by Stefan van der Walt <[email protected]> """ USAGE: sparks.py [comma,separated,value,list] or [vals separated by spaces] EXAMPLES: spark 1,5,22,13,53 ▁▁▃▂▇ spark 0 30 55 80 33 150 ▁▂▃▅▂▇ spark 0.1 0.2 0.9 -0.5 ▄▅█▁ """ import sys import numpy as np if len(sys.argv) < 2: print __doc__ sys.exit(-1) sparks = np.fromstring('▁▂▃▄▅▆▇█', dtype='S3') values = np.array([float(v) for v in ' '.join(sys.argv[1:]).replace(',', ' ').split()]) if np.unique(values).size != 1: values -= values.min() m = values.max() or 1 values /= m print sparks[np.round(values * (sparks.size - 1)).astype(int)].tostring()