[R] run self written functions

2006-08-03 Thread Antje
Hello, I'm not sure if I'm in the right place with my question... I'm running R on Windows and wrote a function and saved it as .R file. It looks like this: bmi - function(weight, height) { bmi - weight / height^2 bmi } If I want to use this function, I have to mark everything and then

Re: [R] run self written functions

2006-08-03 Thread Thomas Kuster
Hello Am Donnerstag, 3. August 2006 09.36 schrieb Antje: Hello, I'm not sure if I'm in the right place with my question... I'm running R on Windows and wrote a function and saved it as .R file. It looks like this: bmi - function(weight, height) { bmi - weight / height^2 bmi }

Re: [R] run self written functions

2006-08-03 Thread Dieter Menne
Antje niederlein-rstat at yahoo.de writes: I'm not sure if I'm in the right place with my question... I'm running R on Windows and wrote a function and saved it as .R file. It looks like this: bmi - function(weight, height) { bmi - weight / height^2 bmi } If I want to use this