output in console is truncated, how to stop this?

Hi

When I enter in the below function into a script, it automatically truncates the information in the console and does not give me all the figures relating to the mean, median and SD. Can anyone help with this? Thank you

moral %>%

  • group_by(condition) %>%
  • summarise(
  • median = median(STAI_pre),
    
  • mean = mean(STAI_pre),
    
  • std_dev = sd(STAI_pre)
    
  • .... [TRUNCATED]

A tibble: 2 x 4

condition median mean std_dev

1 control 35 36.8 7.99
2 stress 42 44.7 11.2

source("~/.active-rstudio-document", echo=TRUE)

Hi,

Welcome to the RStudio community!

In order for us to help you with your question, please provide us a minimal reproducible example where you provide a minimal (dummy) dataset and code that can recreate the issue. Once we have that, we can go from there. For help on creating a Reprex, see this guide:

Good luck!
PJ

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.