Skip to content

trouble loading R function code

2 messages · David Reinke, Martin C. Martin

#
I created an R function offline with a text editor and saved it as fhv.R
When I type in 
load(file="fhv.R")
I get the message
Error: bad restore file magic number (file may be corrupted)-- no data
loaded
I've checked the file, and it opens up fine in Notepad and other text
editors. I also tried this from another folder and got the same message.
What's going on?
Thanks in advance.

David Reinke

Senior Transportation Engineer/Economist
Dowling Associates, Inc.
180 Grand Avenue, Suite 250
Oakland, California 94612-3774
510.839.1742 x104 (voice)
510.839.0871 (fax)
www.dowlinginc.com
#
try:

source("fhv.R")
David Reinke wrote: