Re: [R] print justify

2013-03-06 Thread MacQueen, Don
I don't know about justify as an arg to print, but the following should qualify as a hint. > format(c('a','aa','aaa'), justify='left') [1] "a " "aa " "aaa" > tmp <- data.frame(a=c('a','aa','aaa')) > print(tmp,justify='left') a 1 a 2 aa 3 aaa > tmp$b <- format(c('a','aa','aaa'),justif

[R] print justify

2013-03-06 Thread Berry Boessenkool
Hi everyone, I'm trying to print a table justified to the left, but it doesn't work. Any hints? KennArt <- data.frame(NR=c(171,172,174,175,176,177,181,411,980), TYP=c("Körnermais",  "Corn Cob Mix", "Zuckermais", "Mischanbau (Silo)Mais/Sonnenblumen",  "Mais mit Bejagungsschneise in gutem landw