Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8040165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T03:48:29+00:00 2026-06-05T03:48:29+00:00

I have written a function, which takes some time to run (due to a

  • 0

I have written a function, which takes some time to run (due to a 1000+ loop on a huge dataset in combination with forecasting model testing).

To have any idea on the status, while the function is called, I use the message command inside the for-loop in the function. The problem is that all the messages are shown in the console after the function is finished, instead of showing immediately. So it doesn’t help me 🙂

I tried to find a solution on Stackoverflow, but didn’t found one. I looked for instance on the question “showing a status message in R“. All answers and example codes in that topic still give me only text in the console after a function is processed instead of immediately.

How to solve this? Is there maybe a setting in R which prevents immediate printing of message text in the console?

note: examples I tried below, which give the same results as my function; showing text after processing the function.

example1 (Joshua Ulrich):

for(i in 1:10) {
  Sys.sleep(0.2)
  # Dirk says using cat() like this is naughty ;-)
  #cat(i,"\r")
  # So you can use message() like this, thanks to Sharpie's
  # comment to use appendLF=FALSE.
  message(i,"\r",appendLF=FALSE)
  flush.console()
}

example2 (Tyler):

test.message <- function() {
  for (i in 1:9){
    cat(i)
    Sys.sleep(1)
    cat("\b")
  }
}

edit: the first example does work (‘flush console’ was the problem)…but when I tested it, I commented out flush console for some reason :S

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T03:48:30+00:00Added an answer on June 5, 2026 at 3:48 am
    test.message <- function() {
         for (i in 1:9){
           cat(paste(as.character(i),'\n'))
           flush.console()
           Sys.sleep(1)
         }
       }
    

    which is similar to the recommendation by fotNelton.

    Edit: ttmaccer is most likely right. I’ve just tested on a Ubuntu server and the code works without flushing the console.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written some code in which a small part of the code takes
I have written a function which takes a whole bunch of files, zips them
I have written a simple jQuery.ajax function which loads a user control from the
I have written a JUnit test for a private function which is returning String.
I have written my own function, which in C would be declared like this,
I have written a small function, which uses ElementTree to parse xml file,but it
I have a function written in C# which has one parameter type as Dictionary<string
I have written a small function, which uses ElementTree and xpath to extract the
I have written a simple HelloWorld web service. Which takes an ArrayList as parameter.
I have some code written by someone else in which some functions take arguments

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.