On loading a yaml file with values such as 25.0, the .0 is ignored and what I get is 25. Is it possible to force yaml to consider the value as it is without manipulating the data? I have tried enclosing the values in single/double quotes, but that does not work.
[Edit]: I am using the yaml parser package for R programming language. The data type returned is double. If I set the value to 25.2, I get back the same value. How can I force YAML/R to read the the information in YAML as it is.
.0value. It most likely is a language feature to trim floats when there is no meaningful value after the decimal point. I have no idea about R so I can't answer that with 100% certainty though. – Torsten Walter Aug 2 '12 at 21:17Number(1.0).toFixed(2)which returns a string1.00. – Torsten Walter Aug 2 '12 at 21:31