来自不连续数据的奇怪图表

来自不连续数据的奇怪图表

Tex 大师;

我正在尝试绘制一些数据与时间的关系图,其中有一些缺失值。大多数情况下,这种方法效果很好,但对于一个特定的图,我得到了一些非常奇怪的结果。这些数据始终是 1:1(即,每个时间值永远不会有多个数据值),并且时间间隔均匀。

Pfgplots 做了一些不必要的事情:a)它每次绘制多个数据点...参见下面的例子;b)它并没有像我期望的那样跳过丢失的数据。

有任何想法吗?

Latex 代码片段:

\begin{axis}[c3,name=plot_name,at=(plot1.below south west),anchor=north west,legend cell align=left,ylabel={\small Quantity (-)}line join=round, width=16.85cm,height=4.2cm,ymin=0,ymax=360,xmin=0,xmax=1500]   
\addplot+[smooth,mark=none,color=c3,unbounded coords=jump] table [x=t, y=val, col sep=comma] {file.csv};    
\end{axis}

数据示例:

t,val
396,54.147
396.1,40.59
396.2,40.59
...
438.4,67.594
438.5,nan
...
894.9,nan
895,60.13
895.1,52.17

阴谋诡计

相关内容