Re: [ESS] Building 18.10-1 from source

2018-11-02 Thread Nicky Chorley via ESS-help
On Thu, 1 Nov 2018 at 08:17, Vitalie Spinu wrote: > No idea. It works fine with pdfTeX and TexLive for me. As compared to the > release, there is one new paragraph in doc/newfeat.texi with one unusual > `@file{Makefile}`. Could you please replace @file with @code and see if it > works? I did try

Re: [ESS] Building 18.10-1 from source

2018-10-31 Thread Nicky Chorley via ESS-help
On Wed, 31 Oct 2018 at 10:19, Vitalie Spinu wrote: > This should have been fixed in the master. Thanks Vitalie. Do you happen to know when this will make its way into a release? I maintain the package for Slackware Linux and would prefer to stick to your releases rather than particular Git

[ESS] Building 18.10-1 from source

2018-10-30 Thread Nicky Chorley via ESS-help
e in lisp explicitly tries to copy them (line 43) and hence fails. What to do here? Thanks, Nicky Chorley [[alternative HTML version deleted]] __ ESS-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/ess-help

Re: [R] Where is the error

2008-09-14 Thread Nicky Chorley
is of length zero Arrays/vectors/matrices in R are indexed from 1, not 0. Regards, Nicky Chorley __ R-help@r-project.org 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] ON MAC, how to copy a plot on to Word document?

2008-09-07 Thread Nicky Chorley
it as a PNG/JPEG/BMP/TIFF and then just import it. Regards, Nicky Chorley __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented

Re: [R] I don't know how to run a r-code written in emacs

2008-09-06 Thread Nicky Chorley
. The man page for R suggests this usage (admittedly, though, it's perhaps not obvious) and there are options listed in it that you may want to use. For what it's worth, it makes no difference which editor you use to write your code in. Regards, Nicky Chorley

Re: [R] need some help on r

2008-08-30 Thread Nicky Chorley
I want to retrieve 50.20 records How can I get ? A quick subset appears to do what you want: subset(Tdf, sn.rnc == 50.20) For more info: ? subset and you may want to look at http://www.ats.ucla.edu/stat/splus/faq/subset_R.htm. Regards, Nicky Chorley

Re: [R] add to vector without duplicatation

2008-08-28 Thread Nicky Chorley
2008/8/28 Yuan Jian [EMAIL PROTECTED]: Hi, I try to add items to a vector, but when the it has existed, the item should be skipped. does anyone know how to do it a simple way? You might be able to use unique(). Regards, Nicky Chorley __ R-help

Re: [R] Error producing density curve

2008-08-27 Thread Nicky Chorley
2008/8/27 Nicky Chorley [EMAIL PROTECTED]: 2008/8/27 rr400 [EMAIL PROTECTED]: Hi, i have never really used R before and i need to produce a density curve for use in an assignment. Following the instructions in the manual provided with my course i keep getting this error message: Error

Re: [R] Finding a probability

2008-08-27 Thread Nicky Chorley
2008/8/27 rr400 [EMAIL PROTECTED]: Thank you so much, at least i got that part right. But what is the meaning of the e-11 at the end?? Exponential notation. It means 10^-11. Regards, Nicky Chorley __ R-help@r-project.org mailing list https

Re: [R] Error producing density curve

2008-08-26 Thread Nicky Chorley
' The commands i have entered are: x=seq(0, 1800, 10) x f=dnorm(x, 1454.190, 162.6301) f plot(x,f,type='1') It's probably a lowercase L, not a 1 (to plot lines rather than points). Regards, Nicky Chorley __ R-help@r-project.org mailing list https

Re: [R] Positioning of axis titles

2008-08-21 Thread Nicky Chorley
To all: Thank you for your suggestions for help with this. I've not yet had a chance to investigate these things yet, but will do so soon! Again, thanks for the suggestions. Nicky Chorley __ R-help@r-project.org mailing list https://stat.ethz.ch

[R] Positioning of axis titles

2008-08-20 Thread Nicky Chorley
space in the window, so I can hopefully change mgp and sort the problem. Is changing mgp the only way to position axis titles/labels? Regards, Nicky Chorley __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do

Re: [R] Positioning of axis titles

2008-08-20 Thread Nicky Chorley
2008/8/20 Uwe Ligges [EMAIL PROTECTED]: Increase the margins as well, default is: par(mar=c(5,4,4,1)+.1) Uwe Ligges Thanks very much. One further question: is it possible to change the position of only one axis title (since using mgp changes both)? Thanks again, Nicky Chorley