pgfplotstable 显示行的子集吗?

pgfplotstable 显示行的子集吗?

我正在使用 pgfplotstable 将 csv 可视化如下:

\pgfplotstabletypeset[
    string type,
    col sep = comma,
    begin table=\begin{longtable},
    end table=\end{longtable},
    columns={{packo id},{N}},
    every head row/.style={before row=\toprule, after row=\midrule\endhead},
    every last row/.style={after row=\bottomrule}
]
{csv/comparison.csv}

但是,我只想显示文件中的行子集。例如,第 20 行到第 100 行。这可能吗?

答案1

这些键skip between rows可以多次应用。对于频繁的间隔,编写它很繁琐,但可以用来选择不同的行组。

正如 OP 提到的,这被用作

skip rows between index={0}{20},
skip rows between index={100}{1000}

将跳过最初的 20 和包含的间隔[100,1000]

相关内容