Bogaso wrote > Hello all, > > I was trying to load a .r file using source() ... functions ... however > getting > following error: > >> source("D:/Book Code.r") > Error in sys.call(sys.parent()) : node stack overflow
I realise the above message is quite old, just a quick reply if anyone is encountering the same error and was trying to find a solution (and ending up here). The error is occurring because the line: > source( "filename.r" ) is in the file (filename.r) that you're trying to open. Hash this out in the document >#source("filename.r") and then it's there for you to copy-paste in and run the code, but shouldn't cause the error above. I would advise copy-pasting the code you're trying to run in the document first, to make sure that there are no errors in there either! Hope that helps anyone encountering the error. -- View this message in context: http://r.789695.n4.nabble.com/Problem-loading-r-file-tp4653624p4673413.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ 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.