Sure, just set them to NULL.

> mylist <- c(a=1, b=2, c=3)
> mylist
a b c
1 2 3
> names(mylist) <- NULL
> mylist
[1] 1 2 3


Sarah

On Tue, Jul 29, 2008 at 1:45 PM, Rajasekaramya <[EMAIL PROTECTED]> wrote:
>
> hi ,
>
> Is there anyways to delet the list names once created.
>
> i tried
> rm(names(mylist))
>
> i didnt work
>
> kindly help me
>
> Ramya



-- 
Sarah Goslee
http://www.functionaldiversity.org

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to