标签: tabular

HTML + CSS:结合<UL>/<OL>和faux-tabular格式

我有一个我想用HTML显示的分层表.在<ul><ol>标签工作的伟大事物的层次的一部分,但我想有2分或3列总计在最左侧的列层次缩进,如

  • FOO
    • foo1
    • foo2的
      • foo2a
    • foo3
      • foo3a
      • foo3b
  • 酒吧
    • BAR1
      • bar1a
      • bar1b
    • BAR2

但我也希望每个项目在右侧的列上都有一些相应的信息.

我怎么能用HTML和CSS做到这一点?

html css hierarchical tabular

0
推荐指数
1
解决办法
903
查看次数

python制表混淆矩阵

在我的 sklearn 逻辑回归模型中,我使用metrics.confusion_matrix命令获得了一个混淆矩阵。数组看起来像这样

array([[51,  0],
   [26,  0]])
Run Code Online (Sandbox Code Playgroud)

忽略模型做得很糟糕的事实,我试图了解以漂亮的方式制表此矩阵的最佳方法是什么

我正在尝试使用tabulate 包,此代码部分适用于我

print tabulate(cm,headers=['Pred True', 'Pred False']) 
Run Code Online (Sandbox Code Playgroud)

因为它给出了输出

  Pred True    Pred False
-----------  ------------
     51             0
     26             0
Run Code Online (Sandbox Code Playgroud)

编辑

要插入行名称,我意识到插入元素而不是 zip 会有所帮助

cm_list=cm.tolist()
cm_list[0].insert(0,'Real True')
cm_list[1].insert(0,'Real False')
print tabulate(cm_list,headers=['Real/Pred','Pred True', 'Pred False'])
Run Code Online (Sandbox Code Playgroud)

因为它给

Real/Pred      Pred True    Pred False
-----------  -----------  ------------
Real True             51             0
Real False            26             0
Run Code Online (Sandbox Code Playgroud)

但是,仍然想知道是否有更快或替代的美化混淆矩阵的方法。(我在网上找到了一些绘图示例,但我不需要那个)

谢谢,

python tabular confusion-matrix scikit-learn

0
推荐指数
1
解决办法
3267
查看次数

我怎样才能像一张桌子一样打印出来?

我有以下代码要打印:

cout<<current->bookId<<"\t\t"<<current->bookName<<"\t\t"<<current->year<<"\t\t";
cout<<"Checked out by student "<<current->storedBy<<endl;
Run Code Online (Sandbox Code Playgroud)

看起来像这样

BookId          BookName                Year            Status
1000            Machine Learning                1997            Checked out by student 21000000
1200            Data Mining             1991            Checked out by student 21000020
1400            C++ How to Program              2005            Checked out by student 21000020
1500            Pattern Recognition             2000            Checked out by student 21000000
Run Code Online (Sandbox Code Playgroud)

我该怎么做才能做到这一点:

BookId          BookName                        Year            Status
1000            Machine Learning                1997            Checked out by student 21000000
1200            Data Mining                     1991            Checked out by student 21000020
1400            C++ How to Program              2005            Checked …
Run Code Online (Sandbox Code Playgroud)

c++ tabular

0
推荐指数
1
解决办法
255
查看次数

如何改善乳胶表

在此表中,如何使两个表之间的上一行匹配?我想要两个高度相同的桌子。这是我用来创建表格的代码

\documentclass{article}
\usepackage{geometry}
\usepackage{textcomp}
\usepackage{adjustbox}
\usepackage{mathtools}
\usepackage{booktabs} % 
\usepackage[group-separator={,}]{siunitx}
\usepackage{changepage}
\newcommand{\undepth}[1]{%
    \smash[b]{%
        \begin{varwidth}[t]{\linewidth}#1\end{varwidth}
    }%
}
\usepackage{makecell}%To keep spacing of text in tables

\begin{document}

\begin{table}[htbp!]
    \centering
    \footnotesize
    \caption{caption}
    \begin{tabular}{lSSSS}
        \toprule
        \makecell[cc]{column1 \\ second line} & \multicolumn{1}{l}{column2} & \multicolumn{1}{l}{column3} & \multicolumn{1}{l}{column4} & \multicolumn{1}{l}{column5} \\
        \midrule
        A     & 4     & 0     & 0.00 & 4     \\
        B     & 30    & 0     & 0.00 & 30   \\

    \bottomrule
    \end{tabular}
    \quad   
    \footnotesize
    \begin{tabular}{lSS}
        \toprule
        & {Column1.1 } & {Column2.1}\\
        \midrule
        A     & 0.02 & 0.00 …
Run Code Online (Sandbox Code Playgroud)

latex tabular

0
推荐指数
1
解决办法
42
查看次数

将表格格式的文本打印到 tk.Text 小部件中,而不是按预期对齐

我在互联网上找不到答案,所以我希望你能帮助我。我正在尝试从列表中打印到 Tkinter 中的文本框。由于某种原因,当我将它打印到文本框时,它没有按预期对齐,但是当我将它打印到控制台时,它正确对齐。

您可以在data 上找到我正在使用的数据

你们中有人知道可能是什么问题吗?

from tkinter import *

popup = Tk()
popup.wm_title("Podaci mreze")
widthTabela = 600
heightTabela = 500
def zatvaranje():
    popup.destroy()

screenw = popup.winfo_screenwidth()
screenh = popup.winfo_screenheight()
x = screenw / 2 - widthTabela / 2
y = screenh / 2 - heightTabela / 2
popup.geometry("%dx%d+%d+%d" % (widthTabela, heightTabela, x, y))


textTFrame = Frame(popup, borderwidth=1, relief="sunken")
textTabela = Text(textTFrame, width=83, height=28.4, wrap="none", borderwidth=0)
textTVSB = Scrollbar(textTFrame, orient="vertical", command=textTabela.yview)
textTHSB = Scrollbar(textTFrame, orient="horizontal", command=textTabela.xview) …
Run Code Online (Sandbox Code Playgroud)

python tkinter tabular tkinter.text tkinter.style

0
推荐指数
1
解决办法
369
查看次数

如何使用html创建发票/收款

我正在为一家土地开发公司申请一份申请.我的申请管理员必须开具发票,收据或账单.

我需要使用HTML + CSS 使它们看起来像http://www.vertex42.com/ExcelTemplates/excel-invoice-template.html.如果您知道任何示例模板链接,请通知我或给我如何使用HTML + CSS进行设计的建议.

html css forms tabular

-3
推荐指数
1
解决办法
1万
查看次数