search for: nabc

Displaying 3 results from an estimated 3 matches for "nabc".

Did you mean: abc
2008 Mar 10
2
source() behavior I don't understand
...t;ttt <- 1\nttt" conn.ttt <- textConnection(temp.ttt) source(conn.ttt, echo=TRUE) ## name of variable is echoed close(conn.ttt) cat(file="c:/temp/temp.R", temp.ttt) ## name of variable not echoed source("c:/temp/temp.R", echo=TRUE) temp.abc <- "abc <- 1\nabc" conn.abc <- textConnection(temp.abc) source(conn.abc, echo=TRUE) ## name of variable is echoed close(conn.abc) cat(file="c:/temp/temp.R", temp.abc) ## name of variable is echoed source("c:/temp/temp.R", echo=TRUE) The behavior I don't understand is why the varia...
2009 Oct 01
1
re ading and analyzing a word document
...Please advise. Thanks In Solidarity JR cat"banana", "peacock","Weapons" "Mass" "Destruction" file=("letter.doc"),sep="\n") readLines(file, n=-1) unlink("letter.doc") # tidy up ## difference in blocking cat("123\nabc", file = "test1") readLines("test1") # line with a warning a=con <- file("test1", "r", blocking = FALSE) readLines(con) # empty cat(" def\n", file = "test1", append = TRUE) readLines(con) # gets both close(con) unlink("test1&q...
2011 Mar 09
0
VennDiagram Bugs
...col = cat.col, cat.cex = cat.cex, cat.fontface = cat.fontface, cat.fontfamily = cat.fontfamily, cat.just = cat.just, cat.prompts = cat.prompts, fill = fill, alpha = alpha, ...) 2: draw.triple.venn(length(a), length(b), length(c), length(nab), length(nbc), length(nac), length(nabc), list.names, ind = FALSE, list.order = 1:3, ...) 1: venn.diagram(list(A = X, B = Y, C = Z), "crash.tiff") My setup is : > sessionInfo() R version 2.12.2 (2011-02-25) Platform: x86_64-pc-mingw32/x64 (64-bit) locale: [1] LC_COLLATE=English_Australia.1252 LC_CTYPE=English_Aus...