exsheets 解决方案中的 tikzpicture

exsheets 解决方案中的 tikzpicture

\datavisualization在解决方案中遇到了问题exsheets。我只得到了一个小十字,但没有得到抛物线。

有人有类似的经历并能帮助我吗?

\begin{solution}[print]
    \begin{tikzpicture}
    \datavisualization [school book axes, visualize as smooth line]
    data { x, y
      -1.5, 2.25
      -1, 1
      -.5, .25
      0, 0
      .5, .25
      1, 1
      1.5, 2.25
    };
   \end{tikzpicture}
\end{solution}

答案1

我使用 pgfplots 代替数据可视化。现在效果很好。下面是一些测量点的线性回归示例。

\begin{tikzpicture}
   \pgfplotsset{compat=newest, axis lines = middle}
    \begin{axis}[
    ymin=0, ymax =4, 
    xmin=0, xmax = 10,
    x=1cm, y=2cm,
    grid={both},
    xlabel={Auslenkung $s$ in cm},
    ylabel={Kraft $F$ in N}
    ]
    \addplot[only marks] table[row sep=\\]{
        X Y\\
        0.0 0.00\\
        1.0 0.42\\
        2.0 0.79\\
        3.0 1.22\\
        4.0 1.57\\
        5.0 1.99\\
        6.0 2.40\\
        7.0 2.59\\
        8.0 2.81\\
        9.0 3.00\\
    };
    \addplot table[row sep=\\,
    y={create col/linear regression={y=Y}}] % compute a linear regression from the
    %input table
    {
        X Y\\
        0.0 0.00\\
        1.0 0.42\\
        2.0 0.79\\
        3.0 1.22\\
        4.0 1.57\\
        5.0 1.99\\
        6.0 2.40\\
    };
     \end{axis}   
\end{tikzpicture}

问候

相关内容