On Wed, Aug 22, 2007 at 08:53:39PM +0300, Jari Oksanen wrote: > > On 22 Aug 2007, at 20:16, Duncan Murdoch wrote: > > A fairly common use of paste is to put together reports for human > > consumption. Currently we have > > > >> p <- as.character(NA) > >> paste("the value of p is", p) > > [1] "the value of p is NA" > > > > which looks reasonable. Would this become > > > >> p <- as.character(NA) > >> paste("the value of p is", p) > > [1] NA > > > > under your proposal? (In a quick search I was unable to find a real > > example where this would happen, but it would worry me...) > > At least stop() seems to include such a case: > > message <- paste(args, collapse = "") > > and we may expect there are NAs sometimes in stop().
The examples show, that changing the behavior of paste in general may not be appropriate. On the other hand, if we concatenate character vectors, which are part of data, then is.na(paste(...,NA,...)) makes sense. Character vectors in data are usually represented by factors. On the other hand, factors are not typical in cases, where paste is used to produce a readable message. Hence, it could be possible to have is.na(u[i]) for those i, for which some of the vectors v1, ..., vn in u <- paste(v1,....,vn) is a factor and has NA at i-th position. Petr Savicky. ______________________________________________ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel