如何重复使用 pgfplots 表?

如何重复使用 pgfplots 表?

我正在根据单个输入创建多个图:

\addplot+[discard if not={condition}{T}] table[meta index = {1}, y index = {2}, x index = {3}, col sep=comma] {data.csv};
\addplot+[discard if not={condition}{F}] table[meta index = {1}, y index = {2}, x index = {3}, col sep=comma] {data.csv};

我怎样才能避免这种重复并重复使用该表?

% create reference to table
...
\addplot+[discard if not={condition}{T}] TableReference
\addplot+[discard if not={condition}{F}] TableReference

相关内容