Displaying 1 result from an estimated 1 matches for "tp21962284p21962681".
2009 Feb 11
3
What is going on?
Ok, so I'm new to R, but this is driving me crazy. In this example, I
am trying to process each element in a list.
<code>
s = "1,2"
l = strsplit(s, ",", fixed=TRUE)
print("BEGIN")
n = length(l)
i = 1
while (i <= n) {
x = l[[i]]
print(paste("x:", class(x), x))
print("BEFORE PRINT")
print(x)
print("AFTER PRINT")
i