You should be able to use as.data.frame with a td.data.frame as input to retrieve rows from the database into R. It would look like this:
tdf <- td.data.frame('mytable');
df <- as.data.frame(tdf, size=1000000);
There is a default size of 100 just to protect from bring back millions or rows by accident but you can override but setting the size to whatevery you want, say size=1000000.
You should be able to use as.data.frame with a td.data.frame as input to retrieve rows from the database into R. It would look like this:
tdf <- td.data.frame('mytable');
df <- as.data.frame(tdf, size=1000000);
There is a default size of 100 just to protect from bring back millions or rows by accident but you can override but setting the size to whatevery you want, say size=1000000.