similar to: Solve your R problems

Displaying 20 results from an estimated 300 matches similar to: "Solve your R problems"

2013 Feb 28
2
Fortune?
I think the rule is that you can do anything as long as you don't complain. If you want to complain, you must follow the instructions. -- Jari Oksanen in Re: [Rd] Keeping up to date with R-devel -- Patrick Burns pburns at pburns.seanet.com twitter: @burnsstat @portfolioprobe http://www.portfolioprobe.com/blog http://www.burns-stat.com (home of: 'Impatient R' 'The R
2014 Jan 03
1
wishlist: decreasing argument to is.unsorted
I've just realized that it could be handy to have a 'decreasing' argument in 'is.unsorted'. And I'm cheekily hoping someone else will implement it. It is easy enough to work around (with 'rev'), but would be less hassle with an argument. The case I have in mind uses 'is.unsorted' in 'stopifnot'. Pat -- Patrick Burns pburns at pburns.seanet.com
2006 Nov 08
2
Sweave and font problems
Dear All, Having now successfully started using Sweave, I have just noticed an odd side effect with fonts. Using plain LaTeX, I have had no problems using \usepackage{palatino} or \usepackage{times} and the font correctly changes. However, once I convert the tex document into Snw, and run it through R CMD SWEAVE, LaTeX seems to ignore this package directive. The LaTeX log suggests the font
2001 Jul 07
2
font metrics updated on each program launch
Everytime I start a program with wine-20010629 on Red Hat Linux, font metrics get updated. I am getting fonts through the Xserver (no xfont server) (currently M$, ghostscript, Type1, misc and 75dpi fonts) Is this behaviour normal? Everytime this happens, I get lots of output like fixme:font:LFD_InitFontInfo DBCS fonts like '-urw-century schoolbook
2009 May 12
1
times family unavailable in postscript device (Ubuntu Linux)
I'm running Ubuntu 9.04. I could use some advice about fonts in postscript devices. > sessionInfo() R version 2.9.0 (2009-04-17) i486-pc-linux-gnu locale: LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=en_US.UTF-8;LC_COLLATE=en_US.UTF-8;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C attached base
2007 Sep 30
1
Problem with Palatino font in pdf figures
Dear All, Consider the following piece of code: pdf(file="figure.pdf", family="Palatino") plot(0,0,type='n', xlim=c(-20,20), ylim=c(0,2),xlab="",ylab="",axes=F) text(-1.4,1.168,expression(italic("The font looks different when this is seen with Acrobat Reader!")),xpd=T) dev.off() When viewing the produced figure.pdf with kpdf (on Linux),
2007 Nov 18
1
Exporting a plot with the LaTeX font lmodern
Dear All, I would like to export, as a pdf file, a plot with the LaTeX font lmodern as the font of my graph. Could somebody please help me? Thanks in advance, Paul
2008 Jul 20
25
Formatting Problem of ZFS Adm Guide (pdf)
ZFS Administration Guide (in PDF format) does not look very professional (at least on Evince/OS2008.05). Please see attached screenshot. This message posted from opensolaris.org -------------- next part -------------- A non-text attachment was scrubbed... Name: zfs_adm_pdf.png Type: image/png Size: 173631 bytes Desc: not available URL:
2012 Apr 15
1
no carriage returns in BATCH output from 2.15.0
It seems like I must be missing something since I haven't been able to find mention of this. Under Windows 7 I'm not getting carriage returns in the output of BATCH files using 2.15.0 (both 64-bit and 32-bit). They are in the startup messages, but not for the real output. Is this on purpose? Pat -- Patrick Burns pburns at pburns.seanet.com twitter: @portfolioprobe
2014 Feb 06
1
suggested addition to 'install.packages' help file
I suggest that there be an additional sentence in the explanation for the 'repos' argument in the help file for 'install.packages': If the repository is on a local drive, then the string should begin with \code{file:}, e.g., \code{"file:J:/Rrepos"}. Perhaps I'm missing some subtlety, but it makes things work in my case. Pat -- Patrick Burns pburns at
2014 Feb 13
1
no objects apparent in built package
Here's a weird problem that I hope someone can give me some hints for. Actions: Build a package of all R functions -- no compiled code. No indication of anything being wrong. 'require' the newly built package. As far as the session is concerned, there is nothing in the package. This is being done in RStudio on Windows with R version 3.0.2. The package used to work. There was
2018 Aug 05
0
Is this a bug in `[`?
This is Circle 8..1.13 of the R Inferno. On 05/08/2018 06:57, Rui Barradas wrote: > Thanks. > This is exactly the doubt I had. > > Rui Barradas > > ?s 05:26 de 05/08/2018, Kenny Bell escreveu: >> This should more clearly illustrate the issue: >> >> c(1, 2, 3, 4)[-seq_len(4)] >> #> numeric(0) >> c(1, 2, 3, 4)[-seq_len(3)] >> #> [1] 4
2011 Jun 04
0
[R-SIG-Finance] Measure quality of fit for MA(q), ARMA(p, q) and GARCH(p, q)
Thank you so much all for your invaluable inputs. On Sat, Jun 4, 2011 at 3:36 AM, Patrick Burns <patrick at burns-stat.com> wrote: > A common thing to do is the Ljung-Box > test on the residuals. ?For garch it > would be the residuals squared. > > Actually for garch it should be the > rank of the squared residuals -- see >
2012 Mar 14
4
Improving help in R
Hello R people I always wander what other people say about the R help. Finally after some years of using, I decided that it is probably time to try to do something about it, because the feeling of gritting teeth does not go away with years of usage. :) Moreover, I think it is one of the few things where R does not kick asses to the other statistical softwares. So, to the point: I get the feeling
2006 May 27
4
MSWord97 installs properly but still won't launch (or save?) -- 3 more data files
Dear friends: Forgot to include three more data files: http://www.websher.net/tmp/user.reg http://www.websher.net/tmp/system.reg http://www.websher.net/tmp/userdef.reg Thank you again. Benjamin I've been trying for some time to install my copy of Word97 (which I own, having purchased it directly from Microsoft with my own license number). I have tried the latest Wine 0.9.14. To do
2013 Feb 26
3
double bracket stripping names
Is it on purpose that `[[` strips the names when used on an atomic vector? > c(a=1, b=2)[1] a 1 > c(a=1, b=2)[[1]] [1] 1 > sessionInfo() R Under development (unstable) (2013-02-11 r61902) Platform: x86_64-w64-mingw32/x64 (64-bit) locale: [1] LC_COLLATE=English_United Kingdom.1252 [2] LC_CTYPE=English_United Kingdom.1252 [3] LC_MONETARY=English_United Kingdom.1252 [4] LC_NUMERIC=C
2005 May 11
1
PDF Arial, Helvetica and Pagemaker 7.0
Hello, I can generate PDF documents and they look good on acrobat reader. However, when I import the PDFs in Pagemaker 7.0 (on windows2K), I get an error message saying it does not recognize the Helvetica font. I got this from ?pdf: family the font family to be used, one of "AvantGarde", "Bookman", "Courier", "Helvetica", "Helvetica-Narrow",
2004 Apr 13
8
OpenSSH 3.8.1p1: call for testing
Hello All. Portable OpenSSH version 3.8.1p1 nearing release. This is primarily a bug fix release and we're asking for interested parties to try a snapshot [1]. A reminder: we rely on community feedback to find out about problems, particularly as there are many platforms any configurations that we don't have access to and can't test. In most cases, running the built-in tests is
2000 Jul 03
1
How to specify fonts
In Splus, if I wanted to use Bookman-Demi instead of the default Helvetica, I would specify font = 18 as a graphical parameter for a postscript printer. In R it seems font can take only the values 1 to 4 which change only the style but it's still Helvetica. There's some great flexibility using Hershey vector fonts, but it appears they are all mono-spaced. I wish to use proportional
2004 Aug 19
1
Use Font Frutiger in PDF-File
Hi, I'd like to use the font "Frutiger" in my pdf files generated by R. but I only manage this if I create a postscript file with postscript() and the option family = c( "LT_14361.afm", "LT_14363.afm", "LT_14373.afm", "LT_14375.afm" ) and convert this postscript file to pdf. If I specify the option 'family' like above ( =