---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-68-35440945695e> in <module>()
1 #x = np.random.normal(size=100)
----> 2 sns.distplot(donate['contb_receipt_amt'], bins=20, kde=False, rug=True);
/opt/conda/lib/python3.5/site-packages/seaborn/distributions.py in distplot(a, bins, hist, kde, rug, fit, hist_kws, kde_kws, rug_kws, fit_kws, color, vertical, norm_hist, axlabel, label, ax)
226 rug_color = rug_kws.pop("color", color)
227 axis = "y" if vertical else "x"
--> 228 rugplot(a, axis=axis, ax=ax, color=rug_color, **rug_kws)
229 if rug_color != color:
230 rug_kws["color"] = rug_color
/opt/conda/lib/python3.5/site-packages/seaborn/distributions.py in rugplot(a, height, axis, ax, **kwargs)
636 kwargs.setdefault("linewidth", 1)
637 for pt in a:
--> 638 func(pt, 0, height, **kwargs)
639
640 return ax
/opt/conda/lib/python3.5/site-packages/matplotlib/axes/_axes.py in axvline(self, x, ymin, ymax, **kwargs)
814 trans = self.get_xaxis_transform(which='grid')
815 l = mlines.Line2D([x, x], [ymin, ymax], transform=trans, **kwargs)
--> 816 self.add_line(l)
817 self.autoscale_view(scalex=scalex, scaley=False)
818 return l
/opt/conda/lib/python3.5/site-packages/matplotlib/axes/_base.py in add_line(self, line)
1706 line.set_clip_path(self.patch)
1707
-> 1708 self._update_line_limits(line)
1709 if not line.get_label():
1710 line.set_label('_line%d' % len(self.lines))
/opt/conda/lib/python3.5/site-packages/matplotlib/axes/_base.py in _update_line_limits(self, line)
1737 data_path = path
1738
-> 1739 elif any(line_trans.contains_branch_seperately(self.transData)):
1740 # identify the transform to go from line's coordinates
1741 # to data coordinates
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in contains_branch_seperately(self, transform)
2096 def contains_branch_seperately(self, transform):
2097 # Note, this is an exact copy of BlendedAffine2D.contains_branch_seperately
-> 2098 return self._x.contains_branch(transform), self._y.contains_branch(transform)
2099
2100 @property
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in contains_branch(self, other)
1217
1218 # check that a subtree is equal to other (starting from self)
-> 1219 for _, sub_tree in self._iter_break_from_left_to_right():
1220 if sub_tree == other:
1221 return True
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in _iter_break_from_left_to_right(self)
2321 def _iter_break_from_left_to_right(self):
2322 for lh_compliment, rh_compliment in self._a._iter_break_from_left_to_right():
-> 2323 yield lh_compliment, rh_compliment + self._b
2324 for lh_compliment, rh_compliment in self._b._iter_break_from_left_to_right():
2325 yield self._a + lh_compliment, rh_compliment
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in __add__(self, other)
1155 """
1156 if isinstance(other, Transform):
-> 1157 return composite_transform_factory(self, other)
1158 raise TypeError(
1159 "Can not add Transform to object of type '%s'" % type(other))
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in composite_transform_factory(a, b)
2471 elif isinstance(a, Affine2D) and isinstance(b, Affine2D):
2472 return CompositeAffine2D(a, b)
-> 2473 return CompositeGenericTransform(a, b)
2474
2475
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in __init__(self, a, b, **kwargs)
2283 self.output_dims = b.output_dims
2284
-> 2285 Transform.__init__(self, **kwargs)
2286 self._a = a
2287 self._b = b
/opt/conda/lib/python3.5/site-packages/matplotlib/transforms.py in __init__(self, shorthand_name)
96 # parents are deleted, references from the children won't keep
97 # them alive.
---> 98 self._parents = WeakValueDictionary()
99
100 # TransformNodes start out as invalid until their values are
/opt/conda/lib/python3.5/weakref.py in __init__(*args, **kw)
106 if len(args) > 1:
107 raise TypeError('expected at most 1 arguments, got %d' % len(args))
--> 108 def remove(wr, selfref=ref(self)):
109 self = selfref()
110 if self is not None:
KeyboardInterrupt: