Skip to content

Commit e79238e

Browse files
committed
Update README.md
1 parent 154a4e2 commit e79238e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#bashplotlib
22
*plotting in the terminal*
33
<br><br>
4-
<img src="examples/basichist.png">
4+
<img src="examples/img/basichist.png">
55

66
##what is it?
77
<p>bashplotlib is a python package and command line tool for making basic plots in the terminal. It's a quick way to visualize data when you don't have a GUI. It's written in pure python and can quickly be installed anywhere using pip.</p>
@@ -31,29 +31,29 @@ to your python scripts folder. This folder should be on your path (add it if it'
3131
##usage
3232
<h5>command line</h5>
3333
<p><code>hist</code> takes input from either stdin or specified using the -f parameter. Input should be a single column of numbers.</p>
34-
<img src="examples/histhelp.png">
34+
<img src="examples/img/histhelp.png">
3535
<p><code>scatter</code> takes x and y coordinates as input form either a comma delimited file using -f or from 2 different files using -x and -y.</p>
36-
<img src="examples/scatterhelp.png">
36+
<img src="examples/img/scatterhelp.png">
3737

3838
<h5>in python</h5>
3939
<p>If you want to use bashplotlib from python, just import histogram and scatterplot.</p>
4040
<pre>from bashplotlib.scatterplot import plot_scatter</pre>
41-
<img src="examples/scatterplothelp.png">
41+
<img src="examples/img/scatterplothelp.png">
4242
<pre>from bashplotlib.histogram import plot_hist</pre>
43-
<img src="examples/histogramhelp.png">
43+
<img src="examples/img/histogramhelp.png">
4444

4545
##examples
4646
<pre>$ scatter -f data/texas.txt --pch .</pre>
47-
<img src="examples/texas.png">
47+
<img src="examples/img/texas.png">
4848

4949
<pre>$ hist data/exp.txt</pre>
50-
<img src="examples/histogram.png">
50+
<img src="examples/img/histogram.png">
5151

5252
<pre>$ scatter -x data/x_test.txt -y data/y_test.txt</pre>
53-
<img src="examples/scatter.png">
53+
<img src="examples/img/scatter.png">
5454

5555
<pre>$ cat data/lower48.txt | scatter -s 40 --pch .</pre>
56-
<img src="examples/usa.png">
56+
<img src="examples/img/usa.png">
5757

5858
##todo
5959
<ul>

0 commit comments

Comments
 (0)