def test2(self): out = pivot(iris, values=['petal_length'], aggfunc=['mean'], index=['species']) print(out['out_table'])
def test1(self): out = pivot(self.iris, values=['petal_length'], aggfunc=['25th', '75th'], index=['species']) print(out['out_table'])