Reputation: 2564
I currently am trying to run:
Rscript My Simulation From Jan 25.R
which gives me errors. My working directory is inside where the file
"My Simulation From Jan 25.R"
is held. I have tried various things, like:
1) "My Simulation From Jan 25.R"
2) "My\ Simulation\ From\ Jan\ 25.R"
3) $"My Simulation From Jan 25.R"
to no avail. Does anyone know what I can do?
Upvotes: 0
Views: 136
Reputation: 662
Two notes:
1) Both single and double quotes should work.
2) Make sure that you run the command in the same directory where the file is located.
Upvotes: 1