plot buf of too many lines fixed
This commit is contained in:
parent
2e1c30a297
commit
10daf1e723
|
@ -7,7 +7,7 @@ from quacc.environ import env
|
||||||
|
|
||||||
|
|
||||||
def _get_markers(n: int):
|
def _get_markers(n: int):
|
||||||
return [
|
ls = [
|
||||||
"o",
|
"o",
|
||||||
"v",
|
"v",
|
||||||
"x",
|
"x",
|
||||||
|
@ -18,7 +18,20 @@ def _get_markers(n: int):
|
||||||
"h",
|
"h",
|
||||||
"*",
|
"*",
|
||||||
"^",
|
"^",
|
||||||
][:n]
|
"1",
|
||||||
|
"2",
|
||||||
|
"3",
|
||||||
|
"4",
|
||||||
|
"X",
|
||||||
|
">",
|
||||||
|
"<",
|
||||||
|
".",
|
||||||
|
"P",
|
||||||
|
"d",
|
||||||
|
]
|
||||||
|
if n > len(ls):
|
||||||
|
ls = ls * (n / len(ls) + 1)
|
||||||
|
return ls[:n]
|
||||||
|
|
||||||
|
|
||||||
def plot_delta(
|
def plot_delta(
|
||||||
|
|
Loading…
Reference in New Issue