Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Kaggle 上看到了一些数据。https://www.itl.nist.gov/div898/strd/nls/data/LINKS/DATA/MGH09.dat
我正在尝试通过复制和粘贴将其插入到 excel 中。字母和数字是什么意思?这些数据在转换后会是什么样子?
数字 0.00256 用科学计数法表示为 2.56E-03。
这意味着 E 之前的数字(在这种情况下为 2.56)乘以 10 的 -3 次方,即 2.56*10^(-3) 。
类似地,数字 744.67 表示为 7.4467E+02。
例如,您的第一个 y 值 (1.975000E-01) 将是 0.1975,因为它是 1.975 * 10^(-1) 。
您的第一个 x 值 (4.0E+00) 只是 4,因为它是 4.0*10^(0)。