search for: basicstatsibm

Displaying 1 result from an estimated 1 matches for "basicstatsibm".

2007 Dec 31
1
Program output to file using a batch command file
If I copy the following commands in my batch file to the R console, R creates a file named "basicStatsIBM.lis" with the program output in it: Sortie <- file(description = "basicStatsIBM.lis", open = "wt", blocking = TRUE, encoding = "UTF-8") sink(file = Sortie, append = FALSE, type = "output", split = FALSE) basicStats(ibm) close(Sortie) However,...