I believe this should be an easy thing to do...

I have a function I repeatably call which takes input parameters and
outputs columns to various data frames. I also wish to keep a summary of
certain values as I call the function. I though keeping the values in a
vector then appending the vector by the new amounts would be the way to
do this.

Example: (this is what I want even thought the below syntax is wrong)

a <- 1
print(a) --> 1

a <- c(a,2)
print(a) --> 1,2

a <- c(a,2,4,5)
print(a) --> 1,2,2,4,5

Any help would be greatly appreciated...

Marko
-- 
Mark O. Kimball
Gasparinilab, University of Buffalo  |  Low temp physics
[EMAIL PROTECTED]  |  URL: enthalpy.physics.buffalo.edu
lab phone: 716-645-2017x122  Fax: 716-645-2507

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to