On Wed, Apr 20, 2011 at 11:26:19AM +0430, Stat Consult wrote:
> Dear ALL
> 
> I don't know why I can see this error in run this sentences.
> 
> In paste("V", 1L:cols, sep = "") : NAs introduced by coercion

Check, what "cols" is. This warning may be obtained, if "cols"
is a character value. For example

  cols <- "a"
  paste("V", 1L:cols, sep = "")

  Error in 1L:cols : NA/NaN argument
  In addition: Warning message:
  In paste("V", 1L:cols, sep = "") : NAs introduced by coercion

> DATA<-read.delim ("D:\\DATA\\GeneExpression.txt",header=FALSE)

What is the relationship of this to the command above?

If you include a reproducible example, you have a better chance
to get a useful answer.

Petr Savicky.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to