You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We just need to add entries for all backend/receiver combos for markers and colors in plot_utils.py... easy fix but requires attention to make it look good and readable. Awful temporary fix starting at line 361 and 2093:
# Get plot preferences
if 'fmt' in kwargs.keys():
mkr = kwargs['fmt']
else:
try:
mkr = markers[r_b_label]
if restype == 'both':
mkr_pre = '.'
except:
mkr = 'x'
log.log(1, "Rec/Bknd combo doesn't have a marker label!!")
if 'color' in kwargs.keys():
clr = kwargs['color']
else:
try:
clr = colorscheme[r_b_label]
except:
clr = 'k'
log.log(1, "Rec/Bknd combo doesn't have a color!!")
The text was updated successfully, but these errors were encountered:
We just need to add entries for all backend/receiver combos for markers and colors in
plot_utils.py
... easy fix but requires attention to make it look good and readable. Awful temporary fix starting at line 361 and 2093:The text was updated successfully, but these errors were encountered: