Good morning, I have to do a loop in R and some function inside this loop print each results in the console of R, there is a function to stop this printing? I let here an example of code:
for (i in 1:100){
d=datafr[,i]
a=gamlss(y~1, data=d)
summary(a)
}
in this easy code the GAMLSS function print in the console a lot of information.
Thanks!