Lines Matching refs:axes
25 def _plotLocationsDots(locations, axes, subplot, **kwargs): argument
27 if len(axes) == 1:
29 [loc.get(axes[0], 0)],
35 elif len(axes) == 2:
37 [loc.get(axes[0], 0)],
38 [loc.get(axes[1], 0)],
45 raise AssertionError(len(axes))
59 axes = sorted(locations[0].keys())
60 if len(axes) == 1:
62 model, axes[0], fig, cols, rows, names=names, **kwargs
64 elif len(axes) == 2:
66 model, axes, fig, cols, rows, names=names, **kwargs
93 def _plotLocations3D(model, axes, fig, rows, cols, names, **kwargs): argument
94 ax1, ax2 = axes
161 axes = [chr(c) for c in range(ord('A'), ord('Z')+1)]
162 locs = [dict(zip(axes, (float(v) for v in s.split(',')))) for s in args]