Message-ID: <20090225152827.GA8418@localhost>
Date: 2009-02-25T15:28:27Z
From: Philipp Pagel
Subject: Have any way to write a funtion into a list ?
In-Reply-To: <20090225151059.M3288@ibms.sinica.edu.tw>
On Wed, Feb 25, 2009 at 11:11:51PM +0800, Nash wrote:
> Have any way to write a funtion into a list ?
You can do that the same way you would use with any other object:
> foo <- function(x){x^2}
> foo(12)
[1] 144
> a <- list(foo, 12, 'as')
> a
[[1]]
function(x){x^2}
[[2]]
[1] 12
[[3]]
[1] "as"
cu
Philipp
--
Dr. Philipp Pagel
Lehrstuhl f?r Genomorientierte Bioinformatik
Technische Universit?t M?nchen
Wissenschaftszentrum Weihenstephan
85350 Freising, Germany
http://mips.gsf.de/staff/pagel