[R] sourcing scripts

2014-01-29 Thread Ahmed M. El-Kenawy
Hi
 
I am extensively using R to process large amount of data. I tried to source my 
scripts to run sequentially in R, instead of running them seperately. However, 
I always receive an error message related to the memory size although I 
upgraded my RAM from 8GB to 16GB. i do not think this is the main problem. This 
is simply because when I import a script using (open script) and run it, it 
works. But, when I try to source this script (even only one script), i receive 
the same message
Error in memory.size(min = TRUE) : unused argument (min = TRUE)

By the way, my script simply looks like:


memory.size(max=TRUE)
memory.limit()
gc()
memory.limit(16000)
memory.size()
gc()
rm(list=ls(all=TRUE))
source(H:\\HIRAM\\Script_1.R)


cheers 

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


Re: [R] sourcing scripts

2014-01-29 Thread Barry Rowlingson
On Wed, Jan 29, 2014 at 9:26 AM, Ahmed M. El-Kenawy ken...@mans.edu.eg wrote:

 Error in memory.size(min = TRUE) : unused argument (min = TRUE)

 It looks like you've simply typed 'min=TRUE' instead of 'max=TRUE'
somewhere! Somewhere other than the code you sent in the message,
which had max=TRUE. Must be in one of the other scripts sourced in.

Barry

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


Re: [R] sourcing scripts

2014-01-29 Thread Ahmed M. El-Kenawy
Hi Barry,

I removed the lines related to memory size from other scripts and kept it only 
in the master script. Now it works.

Cheers
Ahmed Kenawy

From: b.rowling...@gmail.com [b.rowling...@gmail.com] On Behalf Of Barry 
Rowlingson [b.rowling...@lancaster.ac.uk]
Sent: Wednesday, January 29, 2014 12:10 PM
To: Ahmed M. El-Kenawy
Cc: r-help@r-project.org
Subject: Re: [R] sourcing scripts

On Wed, Jan 29, 2014 at 9:26 AM, Ahmed M. El-Kenawy ken...@mans.edu.eg wrote:

 Error in memory.size(min = TRUE) : unused argument (min = TRUE)

 It looks like you've simply typed 'min=TRUE' instead of 'max=TRUE'
somewhere! Somewhere other than the code you sent in the message,
which had max=TRUE. Must be in one of the other scripts sourced in.

Barry

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