Re: [R] Real Basic Question

2019-09-27 Thread peter dalgaard
> On 26 Sep 2019, at 18:55 , Phillip Heinrich wrote: > > Just when I think I’m starting to get the hang of R I run into something that > sends me back to Go without collecting $200. > > The working directory seems to be correct when I load an .rda file but it is > not there and it is not in

Re: [R] Real Basic Question

2019-09-27 Thread Rui Barradas
Hello, 1. Try path.expand(). flname <- path.expand("~/Baseball/RetroSheetDocumentation/ari18.test2.rda") 2. To load in the global environment load(flname, envir = .GlobalEnv) 3. But read the docs. From ?load: load() replaces all existing objects with the same names in the current environmen

Re: [R] Real Basic Question

2019-09-27 Thread David Winsemius
Sent from my iPhone > On Sep 27, 2019, at 12:55 AM, Phillip Heinrich wrote: > > Just when I think I’m starting to get the hang of R I run into something that > sends me back to Go without collecting $200. > > The working directory seems to be correct when I load an .rda file but it is > no

Re: [R] Real Basic Question

2019-09-26 Thread Duncan Murdoch
On 26/09/2019 12:55 p.m., Phillip Heinrich wrote: Just when I think I’m starting to get the hang of R I run into something that sends me back to Go without collecting $200. The working directory seems to be correct when I load an .rda file but it is not there and it is not in the Global Enviro

[R] Real Basic Question

2019-09-26 Thread Phillip Heinrich
Just when I think I’m starting to get the hang of R I run into something that sends me back to Go without collecting $200. The working directory seems to be correct when I load an .rda file but it is not there and it is not in the Global Environment in the upper right hand window in RStudio. ge