Repository URL to install this package:
Version:
0.23.4 ▾
|
# -*- coding: utf-8 -*-
from pandas import Categorical
class TestCategorical(object):
def setup_method(self, method):
self.factor = Categorical(['a', 'b', 'b', 'a', 'a', 'c', 'c', 'c'],
ordered=True)