bashplotlib icon indicating copy to clipboard operation
bashplotlib copied to clipboard

plotting in the terminal

Results 22 bashplotlib issues
Sort by recently updated
recently updated
newest added

I am trying to display a histogram, and it doesn't work, but instead prints `-----------`... My code is ``` with open("cpuhistory.txt", "r") as n: plot_hist(n) n.close() ``` and cpuhistory.txt is...

To make the analysis for https://github.com/golang/go/issues/46050#issuecomment-835749005 more meaningful it would be great if the x axis of the histogram could show the bin's values as mentioned in the readme.

Hello, I've seen Bashplotlib. it seems this piece of software is inactive since long ago. is it right? Thanks

Hi i added feature for scatter plot. It allows you to use any iterable objects for xs and ys arguments such as arrays or pandas datasiries.

I'm getting the following errors when trying to build using Python3.8 davidjackson@VirtualBox:~/bashplotlib$ python3 setup.py install Traceback (most recent call last): File "setup.py", line 3, in from setuptools import find_packages, setup...

Say I have a list such as [1,2,3,4..]. How do I make a histogram out of this list?

My shell (ksh93) informs me that ``` $ type -a hist hist is a shell builtin hist is /Library/Frameworks/Python.framework/Versions/3.6/bin/hist hist is an undefined function ``` in other words, if I...

Hi and thanks for this very useful tiny tool! In addition to min/mean/max, could you also add the median to the hist summary?

I think it'd be nice and not really complicated to add support to plot from two variables in lists/np.array's. This would be useful when e.g. debugging in a command-line in...