I wish to display the precision of an object as \'float\' in R while having single precision. Currently its stored as default type \'double\'.
timevector=c(1.5,
From the documentation:
R has no single precision data type. All real numbers are stored in double precision format. The functions as.single and single are identical to as.double and double except they set the attribute Csingle that is used in the .C and .Fortran interface, and they are intended only to be used in that context.
http://stat.ethz.ch/R-manual/R-devel/library/base/html/double.html