Displaying 1 result from an estimated 1 matches for "p6734890".
Did you mean:
634890
2008 Aug 20
1
read.csv : double quoted numbers
...(Though the sed command works from shell)
scan(pipe("sed -e s/\"//g DataAll.txt"), sep="\t")
sh: Syntax error: Unterminated quoted string
2) On mailing list on solution I found was setAs() described here
http://www.nabble.com/Re%3A--R--read.table()-and-scientific-notation-p6734890.html
3) Other than using as.is=TRUE and then doing as.numeric for numeric
columns what is the solution? But then how do I efficiently convert
50+ columns to numeric using regular expression? That is all my
numeric columns name starts with 'X' character, so how do I use sapply
and/or regul...