Skip to content
Prev 244020 / 398506 Next

Urgent Help with R calculation correlation coefficient

On 2010-12-06 02:02, chintan85 wrote:
If this is so urgent, then wouldn't it seem like a good idea to
actually peruse the help page for read.csv?

If you have a *tab*-delimited file, then why are your using
read.csv??

Try this:
1. read your data with read.table() or read.delim()
2. issue str(gse20437) to see what you've acutally read
3. Note that one of your columns is *not* numeric (as the
    very helpful error message is trying to tell you)

Peter Ehlers