The R Project SVN R

Rev

Rev 38402 | Rev 42333 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 38402 Rev 41593
Line 66... Line 66...
66
cat(encodeString(x), "\n", sep="") # similar to print()
66
cat(encodeString(x), "\n", sep="") # similar to print()
67
 
67
 
68
factor(x) # makes use of this to print the levels
68
factor(x) # makes use of this to print the levels
69
 
69
 
70
x <- c("a", "ab", "abcde")
70
x <- c("a", "ab", "abcde")
71
encodeString(x, w = NA) # left justification
71
encodeString(x, width = NA) # left justification
72
encodeString(x, w = NA, justify = "c")
72
encodeString(x, width = NA, justify = "c")
73
encodeString(x, w = NA, justify = "r")
73
encodeString(x, width = NA, justify = "r")
74
encodeString(x, w = NA, quote = "'", justify = "r")
74
encodeString(x, width = NA, quote = "'", justify = "r")
75
}
75
}
76
\keyword{ utilities }
76
\keyword{ utilities }
77
 
77