I have accidentally rewrote which()
function from base package in R by my own code. I need the original default which()
function really badly but made a mistake of saving my workspace ( R Console) with the new (my own) definition of which()
function ( that ironically uses the original which()
function in it) so now which doesn't work at all.. How do I get the default which()
back? Is there a way to find the source code for which(
) function?
Try should work...
which <- base:::which
which is explicit, or you can use rm( which )
[thanks @mnel]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With