When I load my package into the global environment, I get the following message
> library(saber)
Attaching package: ‘saber’
The following objects are ma
It means that you have objects (functions, usually) present in your global environment with the same name as (exported) things in your package. Type search() to see the order in which R resolves names.
The solution is to either,
saber::teamStats.Probably (2) is best, unless the circumstances that led to the message are truly unusual.