mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
9 lines
204 B
Python
9 lines
204 B
Python
from pandas import Categorical
|
|
|
|
|
|
class TestCategorical:
|
|
def setup_method(self, method):
|
|
self.factor = Categorical(
|
|
["a", "b", "b", "a", "a", "c", "c", "c"], ordered=True
|
|
)
|