data_hacks icon indicating copy to clipboard operation
data_hacks copied to clipboard

Command line utilities for data analysis

Results 20 data_hacks issues
Sort by recently updated
recently updated
newest added

Note that this removes support for Python 2.5 and older, but the gain is support for all Python 3.x versions. Tested manually with Python 3.4.2 and 2.6.9.

Hi folks. Planning Python 3 compatibility for this awesome tool? I'm getting SyntaxErrors, looks like from print statements missing parens.

enhancement

Hello devs, This package has been a part of my workflow for several years now, mainly since I spend most of my time on the command line. I see its...

Running histogram.py on a data file is cool, but most of my data is kept in local variables in scripts. Introduce print_histogram function which accepts a list of samples and...

``` $ bar_chart.py --help Usage: cat data | bar_chart.py [options] Options: -h, --help show this help message and exit -k, --sort-keys sort by the key [default] -v, --sort-values sort by...

It seems nice that other scripts can import and use data_hacks functions. This pull request adds `__init__.py` to make it a package, and adds option classes. This PR also modifies...

Hi, I'd like to generate histograms to standard out in my python script, and currently have to do `os.system("echo '%s' | historgram.py" % "\n".join(values))` It would be great if I...

`histogram.py` errors if all values are equal. e.g. ``` vagrant@localhost:~/ws$ echo -e '16\n16\n16\n' | ~/ws/bitly/data_hacks/histogram.py Traceback (most recent call last): File "/home/vagrant/ws/bitly/data_hacks/histogram.py", line 300, in options.agg_key_value), options) File "/home/vagrant/ws/bitly/data_hacks/histogram.py", line...

There seem to be a bunch of changes to this repo that aren't reflected in the version that people are downloading through pip. Updating it would be great. Thanks!