3

I have read How to set max ppsize in R? and I have the same problem. I am currently working in Rstudio and I need to set max ppsize to a greater value.

This is my approach:

   > setwd("C:/Program Files/R/R-3.3.1/bin")
   > R.exe --max-pp-size=500000
   Error in R.exe - -max - pp - size = 5e+05 : object 'R.exe' not found

Is this the right way to do it? I have no idea why I can not find the R.exe.

Community
  • 1
  • 1
Greger S
  • 39
  • 1
  • 5

1 Answers1

1

It looks like, you were writing this code into the R-console. But with "command line" its is meant what you upen under windows by searching for cmd (s. e.g. this video for windows or this for mac OS X or this for Linux).

Qaswed
  • 3,649
  • 7
  • 27
  • 47
  • 5
    The flag works for R now: C:\Program Files\R\R-3.3.1\bin>R.exe --max-pp-size=500000 However it doesn't work for Rstudio, any ideas? (C:\Program Files\RStudio\bin>rstudio.exe --max-pp-size=500000) – Greger S Oct 06 '16 at 14:30