Skip to content

All results not showing in console (very large dataset)

3 messages · Aureus, John Kane, Jim Lemon

#
Hi, 

I have a very large dataset, and have run a simper test on it. However, the
output is so large that I cannot see the first sets of results in the
console. How can I view them? I have tried saving to text, but it only saves
what's in the console. 

Or is there a way to report the first X number of results from each
contrasting test? Or summarise each test result individually?

Thanks!





--
View this message in context: http://r.789695.n4.nabble.com/All-results-not-showing-in-console-very-large-dataset-tp4711150.html
Sent from the R help mailing list archive at Nabble.com.
#
Write the results into an object and use head()?

Quick example
dat1  <-  data.frame(aa = sample(x, 500, replace = TRUE),
bb  = sample(x, 500, replace = TRUE),
cc  = sample(x, 500, replace = TRUE),
dd =sample(x, 500, replace = TRUE)
)

head(dat1)

see ?head for more details

John Kane
Kingston ON Canada
____________________________________________________________
FREE 3D MARINE AQUARIUM SCREENSAVER - Watch dolphins, sharks & orcas on your desktop!
#
Hi Aureus,
I think you have cut and pasted the text in the console window when
you say "saving to text". One way to get the entire output of your
test is:

sink('"simper_test.txt")
# run your test code here
sink()

The output will be in the file "simper_test.txt"

Jim
On Sun, Aug 16, 2015 at 7:10 PM, Aureus <hazel_knipe at hotmail.co.uk> wrote: