I have a file containing double precisions written from a FORTRAN code in the format of x.yyyyD+zz
. When using read.csv in R, R does not seem to recognize those as floating point values. I'm new to R; what's the trick here?
相关问题
- Do the Java Integer and Double objects have unnece
- R - Quantstart: Testing Strategy on Multiple Equit
- Using predict with svyglm
- Reshape matrix by rows
- Extract P-Values from Dunnett Test into a Table by
相关文章
- 关于C#中 float、double、decimal 的运算不精确的问题。
- How to convert summary output to a data frame?
- How to plot smoother curves in R
- Paste all possible diagonals of an n*n matrix or d
- ess-rdired: I get this error “no ESS process is as
- How to use doMC under Windows or alternative paral
- dyLimit for limited time in Dygraphs
- Saving state of Shiny app to be restored later
Use
sed
or your favourite text editor to change theD
s toE
s, I expectR
will happily read the numbers after you do that.