Skip to content

[Fwd: ***HTML***R help]

1 message · Tyler Smith

#
Dieter Menne <dieter.menne at menne-biomed.de> writes:
To correct this without deleting .Rdata:

mysum <- sum  ## if you still want to use your function
rm(sum)

This will remove your sum, leaving the 'built-in' available. You can also
access the 'built-in' as:

base::sum()

if there was any reason to keep both functions with the same name (unlikely).

Cheers,

Tyler
--