Re: [R] R Compied for Mac OS X

2020-06-25 Thread William Michels via R-help
Hi, you can try starting at the link below: https://stat.ethz.ch/R-manual/R-patched/doc/html/packages.html Or type any of following commands into your R-Console (for starters): > library() > library(help="base") > library(help="stats") > library(help="graphics") > library(help="grDevices") > lib

Re: [R] R Compied for Mac OS X

2020-06-25 Thread Bert Gunter
These are functions in extra packages that you have to first download from a repository, -- presumably lib.stat/.cmu.edu/r/cran -- install, and then load for use. I suggest you check for tutorials there to to learn how to use R, as it sounds like you are flying blind. Bert Gunter "The trouble wit

Re: [R] R Compied for Mac OS X

2020-06-25 Thread John Kane
What you probably have downloaded and installed is R base. I am not familiar with "movavg" but "ggplot" is a command from the "ggplot2" package. R, in total, consists of R baase and at least 1,000+ packages that do different things. One installs and uses various packages depending on the work one

[R] R Compied for Mac OS X

2020-06-25 Thread Gregory Coats via R-help
Today, I downloaded, and installed the June 6, 2020 version of R, from the CRAN official site at Carnegie Mellon University. Unfortunately, while the CMU compiled Mac OS X R application provides access to base R stat functions, like mean, it does not provide me with access to any of R’s more adv