I have code that is doing this:
sapply(unique(groups.50),function(g)data$SEQUENCE_ID[groups.50 == g])
But in the RGui window, I can only scroll up to see some of the results. The first 10 or so doesn’t show in the window (probably because my data is so large). How do I get it to show all of it, or alternatively, how do I print the first 10 results?
Thanks.
For scrolling through large datasets, the
pagefunction withmethod='print'is also pretty handy. It has the added benefit of not cluttering your command history with output.