forked from Neywiny/merge-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DylUtils.py
executable file
·25 lines (23 loc) · 967 Bytes
/
DylUtils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
def bLen(*args):
"""bLen(*args) -> len(args)
a better version of len, which takes args because in python3 everything is a generator"""
return len(args)
true = True
false = False
alphabet = [chr(i) for i in range(97, 97+26)]
a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z = alphabet
ALPHABET = [chr(i) for i in range(65, 65+26)]
A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z = ALPHABET
def bettorbar(ax, *args, **kwargs):
"""A better error bar function.
Adds kwargs: elinestyle, ecolor
Attempts to set zorder to be the same for all lines"""
mplkwargs = kwargs.copy()
mplkwargs.pop('ecolor', None)
mplkwargs.pop('elinestyle', None)
err = ax.errorbar(*args, **mplkwargs)
color = kwargs.get('ecolor', kwargs['c'])
zorder = err[0].zorder
err[2][0].set(linestyle = kwargs.get('elinestyle', kwargs.get('ls', kwargs.get('linestyle'))), color=color, zorder=zorder)
err[1][0].set(color=color, zorder=zorder)
err[1][1].set(color=color, zorder=zorder)