我对 tikz 和 pgf 的使用还很陌生。我使用 Texmaker。
我收到此错误:PGF Math Error: Sorry, an internal routine of the floating point unit got an ill-formatted floating point number `'. The unreadable part was near ''
当我尝试运行以下代码时
\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{tikz}
\usetikzlibrary{datavisualization}
\begin{document}
\pgfkeys{/pgf/number format/.cd,
read comma as period,
set thousands separator={}}
\pgfplotstableset{col sep = &}
\begin{tikzpicture}[scale=1.6]
\datavisualization[scientific axes, visualize as scatter] %
data [separator=&, read from file = EMR_VA.csv];
\end{tikzpicture}
\end{document}
请你帮助我好吗?
csv 文件有 3 列,以 分隔&
,并且一些值有小数,以逗号分隔。