def quickview(self, n = 25): """view top n results as painlessly as possible. >>> data.quickview(n = 5) :param n: Show top *n* results :type n: int :returns: None """ from other import quickview quickview(self, n = n)
def quickview(self, n=25): """view top n results as painlessly as possible. :Example: >>> data.quickview(n = 5) 0: to (n=2227) 1: that (n=2026) 2: the (n=1302) 3: then (n=857) 4: think (n=676) :param n: Show top *n* results :type n: int :returns: None """ from other import quickview quickview(self, n=n)
def quickview(self, n = 25): """view top n results as painlessly as possible. :Example: >>> data.quickview(n = 5) 0: to (n=2227) 1: that (n=2026) 2: the (n=1302) 3: then (n=857) 4: think (n=676) :param n: Show top *n* results :type n: int :returns: None """ from other import quickview quickview(self, n = n)
def _quickview(self, n=25): from corpkit.other import quickview quickview(self, n=n)
def quickviewfunc(self, n = 25): from corpkit.other import quickview quickview(self, n = n)
def quickview(self, n = 25): """Print top results from an interrogation or edit""" from other import quickview quickview(self, n = n)