Skip to content

Commit 788c849

Browse files
committed
main graph embellisments
1 parent 75b8582 commit 788c849

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bashplotlib/scatterplot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def _plot_scatter(xs, ys, size, pch, colour, title, cs):
3434
if title:
3535
print(box_text(title, 2 * (len(get_scale(xs, False, size)) + 1)))
3636

37-
print("-" * (2 * (len(get_scale(xs, False, size)) + 2)))
37+
print("+" + ("-" * (2 * (len(get_scale(xs, False, size)) + 1))) + "+")
3838
for y in get_scale(ys, True, size):
3939
print("|", end=' ')
4040
for x in get_scale(xs, False, size):
@@ -47,7 +47,7 @@ def _plot_scatter(xs, ys, size, pch, colour, title, cs):
4747
colour = cs[i]
4848
printcolour(point + " ", True, colour)
4949
print(" |")
50-
print("-" * (2 * (len(get_scale(xs, False, size)) + 2)))
50+
print("+" + ("-" * (2 * (len(get_scale(xs, False, size)) + 1))) + "+")
5151

5252
def plot_scatter(f, xs, ys, size, pch, colour, title):
5353
"""

bashplotlib/utils/.helpers.py.swp

-12 KB
Binary file not shown.

0 commit comments

Comments
 (0)