laywerrobot/lib/python3.6/site-packages/pandas/tests/categorical/common.py

11 lines
250 B
Python
Raw Normal View History

2020-08-27 21:55:39 +02:00
# -*- 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)