本文整理匯總了Python中statsmodels.iolib.table.SimpleTable.label_cells方法的典型用法代碼示例。如果您正苦於以下問題:Python SimpleTable.label_cells方法的具體用法?Python SimpleTable.label_cells怎麽用?Python SimpleTable.label_cells使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類statsmodels.iolib.table.SimpleTable
的用法示例。
在下文中一共展示了SimpleTable.label_cells方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_customlabel
# 需要導入模塊: from statsmodels.iolib.table import SimpleTable [as 別名]
# 或者: from statsmodels.iolib.table.SimpleTable import label_cells [as 別名]
def test_customlabel(self):
# Limited test of custom custom labeling
tbl = SimpleTable(table1data, test1header, test1stubs, txt_fmt=txt_fmt1)
tbl[1][1].data = np.nan
tbl.label_cells(custom_labeller)
#print([[c.datatype for c in row] for row in tbl])
desired = """
*****************************
* * header1 * header2 *
*****************************
* stub1 * -- * 1 *
* stub2 * 2.00 * 3 *
*****************************
"""
actual = '\n%s\n' % tbl.as_text(missing='--')
assert_equal(actual, desired)