Lines Matching refs:locations
25 def _plotLocationsDots(locations, axes, subplot, **kwargs): argument
26 for loc, color in zip(locations, cycle(pyplot.cm.Set1.colors)):
48 def plotLocations(locations, fig, names=None, **kwargs): argument
49 n = len(locations)
54 names = [None] * len(locations)
56 model = VariationModel(locations)
59 axes = sorted(locations[0].keys())
90 _plotLocationsDots(model.locations, [axis], subplot)
126 _plotLocationsDots(model.locations, [ax1, ax2], axis3D)
131 locations = [s.location for s in doc.sources]
133 plotLocations(locations, fig, names, **kwargs)