Re: [R] Problem with loaded R packages

2018-08-15 Thread Spencer Brackett
Many thanks! I will look into apply the advice given. -Spencer Brackett On Wed, Aug 15, 2018 at 3:03 PM Jeff Newmiller wrote: > a) Raw URL text is not legal in R code. URLs MUST ALWAYS be enclosed in > single (') or double (") quotes in R. > > b) The source function expects to go where you tel

Re: [R] Problem with loaded R packages

2018-08-15 Thread Jeff Newmiller
a) Raw URL text is not legal in R code. URLs MUST ALWAYS be enclosed in single (') or double (") quotes in R. b) The source function expects to go where you tell it to go and retrieve text composed of R statements. A PDF is a binary file... even if it happened to contain some R code that you co

Re: [R] Problem with loaded R packages

2018-08-15 Thread Marc Schwartz via R-help
Hi Spencer, Please be sure to use reply-all to keep the thread on the list and in the list archives for the future benefit of others. It also allows others to participate with additional information, if needed. You have already loaded the packages by using the two library() function calls as y

Re: [R] Problem with loaded R packages

2018-08-15 Thread Marc Schwartz via R-help
Hi, The ?source function is intended to read a plain text R source code file into the R console, not a PDF file. Even if source() could read in a PDF file, you have a typo in the URL, which is CRAN, not BioConductor, and which should be: https://cran.r-project.org/web/packages/cgdsr/vignette

[R] Problem with loaded R packages

2018-08-15 Thread Spencer Brackett
Good afternoon, I am trying to load the two R packages CGSDR and GAIA which I have successfully installed onto my R program. Following installation of the two packages, I proceeded upon recommendation to load both packages via the library function. Therefore I inputed following... library(cgdsr