Re: [R] How to get the value of last element in a vector/array ?

2008-03-15 Thread Chuck Cleland
On 3/15/2008 1:30 AM, Ng Stanley wrote:
 Hi,
 
 a[length(a)] gives the value of last element. Is there an alternative
 without using functions ?

   I'm not sure what you mean by without using functions, but how 
about this:

tail(a, 1)

?tail

   [[alternative HTML version deleted]]
 
 __
 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. 

-- 
Chuck Cleland, Ph.D.
NDRI, Inc. (www.ndri.org)
71 West 23rd Street, 8th floor
New York, NY 10010
tel: (212) 845-4495 (Tu, Th)
tel: (732) 512-0171 (M, W, F)
fax: (917) 438-0894

__
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.


[R] How to get the value of last element in a vector/array ?

2008-03-14 Thread Ng Stanley
Hi,

a[length(a)] gives the value of last element. Is there an alternative
without using functions ?

[[alternative HTML version deleted]]

__
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.