Skip to content

Commit 2d20ecb

Browse files
author
Director of Analytics
committed
changed filenames in bpl
1 parent 6b8a826 commit 2d20ecb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

bashplotlib/histogram.py

100755100644
File mode changed.

bashplotlib/scatterplot.py

100755100644
File mode changed.

examples/sample.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
#plotting coordinates
2-
../bin/scatter.py -f ../data/texas.txt
2+
../bin/scatter -f ../data/texas.txt
33

44
#with x and y coords
5-
../bin/scatter.py -x ../data/x_test.txt -y ../data/y_test.txt
5+
../bin/scatter -x ../data/x_test.txt -y ../data/y_test.txt
66

77
#plotting a histogram
8-
../bin/hist.py -f ../data/exp.txt
8+
../bin/hist -f ../data/exp.txt
99

1010
#with colors
11-
../bin/hist.py -f ../data/exp.txt -c blue
11+
../bin/hist -f ../data/exp.txt -c blue
1212

1313
#changing the shape of the point
14-
../bin/hist.py -f ../data/exp.txt -p .
14+
../bin/hist -f ../data/exp.txt -p .
1515

1616
#using stdin
17-
curl https://dl.dropbox.com/u/49171662/example.txt | ../bin/hist.py
17+
curl https://dl.dropbox.com/u/49171662/example.txt | ../bin/hist
1818

1919
#getting data from a webpage
2020
curl http://www.baseball-reference.com/ \
2121
| grep -o -E "[$]([0-9]+)" | grep -o -E "[0-9]+" \
22-
| ../bin/hist.py -b 20 -t "Baseball Payrolls" --height 20 --pch "*"
22+
| ../bin/hist -b 20 -t "Baseball Payrolls" --height 20 --pch "*"
2323

2424

0 commit comments

Comments
 (0)