search for: rnotes

Displaying 20 results from an estimated 31 matches for "rnotes".

Did you mean: notes
1998 Mar 02
1
R-beta: Rnotes.tgz
My question is really to Robert and Ross (and also to Bill Venables and Dave Smith) -- but I thought that there might be wider interest in it. The "Notes on R" in the file Rnotes.tgz is copyrighted to the above authors -- can I make copies of it to distribute? I suspect that the intention of the authors is that Rnotes be as re-distributable as R itself. However there is no GNU license or equivalent on it. I don't think the fact that I have copied it off of the net ent...
2019 May 23
1
Artwork localization
Hi Timothy, On Thu, 2019-05-23 at 14:03 +1000, Timothy Lee wrote: > I can provide zh-CN, zh-HK and zh-TW translations of the content. That's awesome! The files you need to edit are the following: - Rolling notes of CentOS installer https://git.centos.org/centos/Artwork/blob/c8/f/rnotes/PO/zh-CN.po https://git.centos.org/centos/Artwork/blob/c8/f/rnotes/PO/zh-HK.po https://git.centos.org/centos/Artwork/blob/c8/f/rnotes/PO/zh-TW.po - Test page of Apache HTTP web server and Default browser web page https://git.centos.org/centos/Artwork/blob/c8/f/html/PO/zh-CN.po https://git.centos....
1998 Aug 14
0
R-beta: Book "Data Analysis with R" (undergrad. teaching) ??
...nvironment for Data Analysis and Graphics" (~90 pages) as postscript file or LaTeX sources. which unfortunately, is rather dated (Fall 1997). An updated (but still not really "current") version of it is currently available from ftp://ftp.stat.math.ethz.ch/Software/R/RNotes.tar.gz (You need Latex for this): mkdir RNotes cd RNotes zcat ..../RNotes.tar.gz | tar xf - make 2) ??? -- who of you R users has some basic introduction into using R? 3) For ``more than undergraduate'' students, there's Venables & Ripley's "MASS" (2...
2009 Feb 13
1
Write and Load functions from an external file
...create common functions in a separate file (say, called A), use those functions from file B by including it like I would any other library. Then when I'm ready to 'release' it, I can package the library and the script... I did find something:----- http://www.ma.hw.ac.uk/~stan/R/Rnotes.pdf<http://www.ma.hw.ac.uk/%7Estan/R/Rnotes.pdf>says :-- To create and edit functions, use the (built-in) R function edit. (As usual, type ?edit at the command prompt for details|see Section 10.) Alternatively the function source|also available via the File menu|can be used to input len...
2010 Jan 09
4
parsing pdf files
I have a pdf file that I would like to parse into R: http://www.williams.edu/Registrar/geninfo/faculty.pdf For now, I open the file in Acrobat by hand, then save it "as text" and then use readLines(). That works fine but a) I am concerned that some information may be lost and b) I may be doing this a lot, so I would rather have R grab the information from the pdf file directly. So: is
1998 Mar 12
2
R-beta: nonlinear fitting
Thanks very much Douglas for the pointer to nlm. Maybe the "Notes on R" maintainer can add at least a mention of nlm in the section on nonlinear fitting? I never did nonlinear fitting in S-Plus before, so I have nothing to unlearn, but I was hoping someone could show me how to do a least squares fit with nlm. example: x<-c(1,2,3,4,5,6) y<-.3*x^-.6 +.2 y<-y+rnorm(6,0,.01)
1998 Mar 12
2
R-beta: nonlinear fitting
Thanks very much Douglas for the pointer to nlm. Maybe the "Notes on R" maintainer can add at least a mention of nlm in the section on nonlinear fitting? I never did nonlinear fitting in S-Plus before, so I have nothing to unlearn, but I was hoping someone could show me how to do a least squares fit with nlm. example: x<-c(1,2,3,4,5,6) y<-.3*x^-.6 +.2 y<-y+rnorm(6,0,.01)
2008 Aug 21
0
kickstart error on 5.2 exception
...DEVICE=eth0 BOOTPROTO=dhcp DHCPCLASS= HWADDR=00:13:D4:FA:EB:53 ONBOOT=yes Anaconda instance, containing members: rootPath: /mnt/sysimage rescue_mount: True intf: InstallInterface instance, containing members: intf.ppw: InstallProgressWindow instance, containing members: intf.ppw.pixmaps: [rnotes/01-centos5-welcome.png, rnotes/02-centos5-donate.png, rnotes/03-centos5-yum.png, rnotes/04-centos5-repos.png, rnotes/05-centos5-centosplus.png, rnotes/06-centos5-support.png, rnotes/07-centos5-docs.png, rnotes/08-centos5-wiki.png, rnotes/09-centos5-virtualization.png] intf.ppw.intf: Already dum...
1999 Jun 29
1
manova
...m using rw0641 with Windows 98. In the help for aov it states that the formula can sepecify multiple responses for a "maov". The help doesn't give an example, Venables and Ripley 1997:381 doesn't either. It isn't mentioned in the scripts nor in the section R Complements nor in Rnotes. I tried aov(c(y1,y2,y3)~x) which seemed reasonable to me but doesn't work. How does it function? Thank you very much. Peter B. -- Peter B. Mandeville mandevip at deimos.tc.uaslp.mx Jefe del Depto. de Inform?tica y Bioestad?stica rpe1531 at pasteur.fmed.uaslp...
2005 Mar 11
1
SIP-B?
I was just reading the release notes for the latest SPA-841 firmware, and noticed that Sipura added support for "SIP-B" to this release. This apparently adds support for bridged line appearances, parking softkeys, called party ID, external missed call summary support, and a handful of other useful features. The release notes are available at
2019 May 23
3
Artwork localization
Hello everyone, What do you think about having localized the following CentOS components: - Rolling notes in CentOS installer. These images are shown during the installation process, once the configuration is done and you are waiting for packages to be installed. Rolling notes are a great place to promote CentOS. If they are not localized, they are shown in English language by default.
1998 Mar 26
3
R-beta: Teach material for R
A non-text attachment was scrubbed... Name: not available Type: text Size: 1480 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-help/attachments/19980326/974231c9/attachment.pl
1998 Apr 13
1
R-beta: command line editing?
I would love to have bash-like command line editing in R. (Press up cursor and see previous command line; use left cursor to go back then edit it) Appendix B in Rnotes describes Splus I guess, not R. Starting R by R -e doesn't let any of the following described actions (B.3) work. I don't use vi or EMACs (I use Nedit), so I would prefer bash-like interface anyway. (I don't think I even installed EMACs) Thanks for any help! Bill Simpson -.-.-.-.-....
1999 Sep 18
1
janka data
There is a documentation of janka hardness data in MASS, but no data. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
2000 Mar 18
1
Where to find: morley.data
"An Introduction to R" has a sample session in the appendix. One of the examples looks at the Michaelson and Morley experiment to measure the speed of light and starts with "file.show("morley.data")". Where does one find this data table? Hans Peter -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2006 Apr 20
1
Own CentOS distribution
Hi All, I have my own distribution CD for RH 7.2 . and when i am i trying creted for CentOS i am facing some problem . I am not able to change the anaconda installer . Thanks in advance Regards juliet
1999 Oct 05
1
WANTED: Q&A
First, I am really liking what I have seen so far in R. The demos are quite fascinating, and I look forward to doing some really neat stuff over the next little while with R. Being but an intiate to R, I am having quite a bit of trouble figuring out how to use the leaps library. Rather than ask several questions to the list at large, I would rather explain what I'm trying to do to someone in
2000 Apr 24
1
Comments on Win95 R Distribution (PR#527)
Here are some comments generated by a new R user based on initial experiences with the tool. On-line help for tapply: The following appears "for to each (non-empty) group of values" It seems there's an extra preposition in this sentence. On-line help for cut: "break" should be "breaks" morley.data not available with the distribution. Would be helpful for
1999 Oct 22
0
on-line documentation (was AR models)
...and S sites for a >> document providing a definition of S and how it works. Is there anyone who >> knows of a site with a good description of the language or is it necessary >> to purchase a book? > > I think that depends on the level of description you want. There is > Rnotes, based on the Venables-Smith Snotes (see the CRAN top level). > Beyond that I think you do need a book, and at a certain point you will > find only information on S, but that is being worked on. > > > -- > Brian D. Ripley, ripley at stats.ox.ac.uk > Professor o...
1998 Oct 05
1
R-beta: help r-new
he copiado los archivos para windows95 en un directorio rnew, donde tengo el ejecutable rjune.exe, al correr este archivo me aparece un menu con las opciones File, workspace, edit, windows y help. La ventana de la consola permacene abierta y no se como se puede iniciar la escritura de un programa ni como compilarlo Yo estoy interezado en este lenguaje ya que trabajo con datos espaciales -