如何使用 tikzlibrary datavisualization 将 x 轴转换为以 x 数据为文本标签的序数轴?

如何使用 tikzlibrary datavisualization 将 x 轴转换为以 x 数据为文本标签的序数轴?

背景

假设的数据部分中有这样的数据datavisualization,这些数据也可能来自文件,

        date,birds      
        30/10/2023,1200
        02/10/2023,1229
...

或者

        species,birds       
        spec4,1200
        spec1,1229
...

\datavisualization提供两种可视化效果,scientific axesschool book axes,它们都需要 xy 数据。

问题

用计数器替换文本 x 数据并引入简单的序数标度并不是什么大问题。但如何保留或访问原始 x 数据并将它们作为标签放在 x 轴上,而不是 1、2、...?

尝试

下面的代码提供了\pgfdeclaredataformat{ordinalX},它用一个简单的计数器 NX 替换了 x-data。

我知道我可以ticks={major at={1 as spec4,...}}手动将列表(例如 via)写入x 轴语句。但在处理数据部分中已给出的数据时,这不是一个好主意。

看来我对这里使用的数据范围、访问权限、数据结构一无所知,甚至无法仅从 pgfmanual 中猜出正确的 pgfkey datavisualization

这个问题只能通过引入全局变量来解决吗?例如 pgfkeys、l3、“array”、data-object 等。如果可以,声明的格式会将提取的原始 x 数据放在那里吗?

\documentclass[10pt,border=3mm,tikz]{standalone}
\usetikzlibrary{datavisualization}

\newcounter{NX}

% ~~~ introducing ordinal values for x ~~~~~~~~~
%     converts (date,birds) into (NX,birds) in (x,y) world
\pgfdeclaredataformat{ordinalX}
    {}
    {}
    {#1,#2}
    {   % ~~~ new x-values: one-by-one ~~~~~~~~~
        \pgfmathaddtocounter{NX}{1}
        \pgfkeyssetvalue{/data point/x}{\theNX}     
        % ~~~ preserving the y-data ~~~~~~~~~~~~
        \pgfkeyssetvalue{/data point/y}{#2}         
        % ~~~ original x-data, to be treated as labels ~~~~
        \pgfkeyssetvalue{/data point/mylabel}{#1}       
        % ~~~ storing NX, y and (?) mylabel ~~~~~
        \pgfdatapoint
    }
    {}{}

% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\begin{document}
 \begin{tikzpicture}
    \datavisualization [
        scientific axes=clean,
        x axis={label=X,
                ticks={label=mylabel} % can't put date as labels
        },      % rather it likes a list ?from data section?
        y axis={label=birds},
        all axes=grid,      
    ][  
        visualize as line,
    ] data [format=ordinalX] {
%       date,birds              % skipping header
        30/10/2023,1200
        02/10/2023,1229
        06/11/2023,980
        09/11/2023,570
        13/11/2023,308
        16/11/2023,2590
        20/11/2023,11700
    }
    %     TEST / Bypass ?
    % ~~~ if I had access to, say, /data point/mylabel here ...
    %     I might be able to iterate and place date as labels
    info{
        \foreach \x in {1,2,...,7}
            \node[rotate=90,anchor=east,teal] 
                at (visualization cs: x={\x},y={-2e3}) {X-label};
    }
    ;
 \end{tikzpicture}
\end{document}

结果

答案1

我找到了一个解决方案,使用和调整Jake 在 2013 年提出的解决方案。 关键点:

  • 大多数事情都发生在声明中x axis={..., ticks={...
  • 它调用一个typesetter
  • 用于styles the nodes标签(旋转等)
  • 排版工具依赖于一个global TeX list,其功能类似于数组
  • 在声明的格式中将ordinalXappends添加到所述列表中
  • 我使用 aLaTeX counter代替 the predefined TeX \@tempcnta请参阅 StackExchange
  • \makeatletter\makeatother都包括在内,但似乎没有产生效果,可能是因为使用了不同的计数器
\documentclass[10pt,border=3mm,tikz]{standalone}
\usetikzlibrary{datavisualization}

\newcounter{NX} % <<< using LaTeX counter istead of \@tempcnta

\makeatletter
    % ~~~ introducing ordinal values for x ~~~~~~~~~
    %     converts (date,birds) into (NX,birds) in (x,y) world
    \pgfdeclaredataformat{ordinalX}%
        {} % No catcode changes
        {\xdef\label@list{}}%                       initialise a global label list
        {#1,#2}%                                    data format
        {%
            \pgfmathaddtocounter{NX}{1}%            advance
            \pgfkeyssetvalue{/data point/x}{\theNX}%store counters result as x-data 
            \pgfkeyssetvalue{/data point/y}{#2}%    the y-data (birds)          
            \xdef\label@list{\label@list,"#1"}%     append label to list
            \pgfdatapoint
        }%
        {}{}

    % ~~~ typesetting the x-axis: putting labels instead of 1,2,3, ... ~~~~~~~~
    \def\ticksfromlabellist#1{%
        \pgfmathparse{{\label@list}[#1]}%   retrieve label one by one   
        \pgfmathresult%                     result: text, i.e. 30/10/2023
    }    
\makeatother


% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\begin{document}
 \begin{tikzpicture}
    \datavisualization [
        scientific axes=clean,
        x axis={
            label=Date,
            ticks={                                             % NEW
                step=1, 
                tick typesetter/.code=\ticksfromlabellist{##1}, % typesetting labels, replacing 1,2,3,...
%               style={text height=1ex},                        % for proper vertical alignment
                node style={rotate=90,anchor=east,teal},        % rotating etc.
            } 
        },  
        y axis={label=birds},
        all axes=grid,      
    ][  
        visualize as line,
    ] data [format=ordinalX] {
%       date,birds              % skipping header
        30/10/2023,1200
        02/10/2023,1229
        06/11/2023,980
        09/11/2023,570
        13/11/2023,308
        16/11/2023,2590
        20/11/2023,11700
    };
 \end{tikzpicture}
\end{document}

结果

相关内容