Dieter Menne wrote:
> Peter Dalgaard <P.Dalgaard <at> biostat.ku.dk> writes:
>
>
>> Or, BTW, you can use within()
>>
>> aq <- within(airquality, rm(Day))
>>
>
> Please add this as an example to the docs of within.
>
possibly with the slightly more generic
unwanted <- 'Day'
aq <- within(airquality, rm(list=unwanted))
vQ