Message-ID: <47D90D63.3010400@stats.uwo.ca>
Date: 2008-03-13T11:17:55Z
From: Duncan Murdoch
Subject: recover masked functions?
In-Reply-To: <853339.72637.qm@web23009.mail.ird.yahoo.com>
Werner Wernersen wrote:
> Hi,
>
> I have loaded the packages car, memisc, Hmisc and all
> of these implement the function recode. The order in
> which the packages are loaded depends on the order I
> execute my scripts and thus is not always the same and
> the syntax of the recode function changes with the
> package.
>
> Is there any way to call specificly the memisc recode
> function?
> Or maybe it's better to detach all packages first and
> then load the required once in each script. Is there a
> way to detach all non-standard packages with a single
> line of code?
>
> This is my first larger project in R and I see there
> is a lot to learn about how to manage the pieces.
You can specify the package in which to find the function in by using
pkgname::recode.
Duncan Murdoch