That doesn't produce quite what Antje asked for (since each line gets number "[1]"). The following does work:
print(cbind(NULL,(1:10))) [,1] [1,] 1 [2,] 2 [3,] 3 [4,] 4 [5,] 5 [6,] 6 [7,] 7 [8,] 8 [9,] 9 [10,] 10 (apart from the unwanted column-name "[,1]", and the "," in rows). Ted. On 21-Feb-11 10:30:37, Yves REECHT wrote: > Hi, > You may try > > invisible(sapply(1:10, print)) > > Yves > > > Le 21/02/2011 11:21, Antje Niederlein a écrit : >> Hi there, >> >> I though there has been a possibility to force the output on the >> console with one element per line. Instead of this: >> >>> 1:10 >> [1] 1 2 3 4 5 6 7 8 9 10 >> >> something like this >> >>> 1:10 >> [1] 1 >> [2] 2 >> [3] 3 >> [4] 4 >> [5] 5 >> [6] 6 >> [7] 7 >> [8] 8 >> [9] 9 >> [10] 10 >> >> Can anybody help? >> Antje -------------------------------------------------------------------- E-Mail: (Ted Harding) <ted.hard...@wlandres.net> Fax-to-email: +44 (0)870 094 0861 Date: 21-Feb-11 Time: 11:08:17 ------------------------------ XFMail ------------------------------ ______________________________________________ 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.