Avoid console message form package function
问题 I'm using a package function (corenv, from seewave) which create a "please wait..." message in console. As I call it iteratively, that message is very annoying. So, I need a way for: From my code, to temporarily ban the console messages OR To access the function code and take off the message line The following is not my real code, but a very simple one showing the problem require(seewave) a = seq(0, (2*pi), by=0.01) #simple, unreal example for (i in sequence(100)){ x = sin(a*i/3) #simple,