[R] trouble loading R function code

2005-03-10 Thread David Reinke
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

__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


Re: [R] trouble loading R function code

2005-03-10 Thread Martin C. Martin
try:
source(fhv.R)
David Reinke wrote:
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
__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
__
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html