[R] display memory usage

2011-12-09 Thread bcdc
Does anybody knows how can I display the memory usage in R? I'd like to know how much RAM R is using to store a data set that I'm reading, is it possible? Thanks in advance, Beatriz -- View this message in context: http://r.789695.n4.nabble.com/display-memory-usage-tp4175898p4175898.html Sent

Re: [R] reading partial data set

2011-12-08 Thread bcdc
Thank you! -- View this message in context: http://r.789695.n4.nabble.com/reading-partial-data-set-tp4169210p4171885.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list

[R] reading partial data set

2011-12-07 Thread bcdc
Hi all, I'm trying to read a data set into R, but the file is messy, so I have to do it partially. The whole data is in a .txt file, and the values are separated by a space. So far ok. The problem is that in this file, not all the lines have the same number of elements, and the reading stops. And

[R] iterative variable names

2011-12-05 Thread bcdc
Hi, I'm trying to assign iterative names to variable, but all my attempts have failed. I have a loop, and for every iteration, I need to create a variable, and I'd like to name them iteratively, such as: for(i in 1:10) { x_i - c(values) } I need it to return ten variables: x_1, x_2, ...,

Re: [R] iterative variable names

2011-12-05 Thread bcdc
Thank you very much, assign was exactly what I needed! For my case, it worked better than list! :) Beatriz -- View this message in context: http://r.789695.n4.nabble.com/iterative-variable-names-tp4159888p4160262.html Sent from the R help mailing list archive at Nabble.com.