'What does the specified number 1 in this code mean?

for (i in 1:25) {
    pid.means[,i] = apply(get(paste("pid.tf",i,sep="")), 1, mean, na.rm = TRUE)
}

I understand the function of this for loop, but i can't find any documentation on what the number after the apply function does..



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source