similar to: unique and precision of long integers

Displaying 20 results from an estimated 2000 matches similar to: "unique and precision of long integers"

2004 May 18
7
Isotopic notation in plots
I really like to use R for all my graphs, and as I work with stable isotopes I want to have a proper chemical notation in my plots I have looked at ?plotmath, but didn't find the answer and also searched the R website. ------------------------------------------------------------------------ -- plot(1:10,xlab=expression(^{14}*C)) # I want to have a superscript with nothing in front, but it
2011 Feb 16
5
Polycom IP335
I am posting here since you guys are my last hope. I am trying to configure a Polycom Soundpoint IP 335 with MWI. Is there any way to eliminate the scrolling messages and Msgs softkey? I am trying to get it where it's just the light that indicates the new messages. I don't know if Asterisk has to send a different notification or what have you. Thanks, --Eric -------------- next
2003 Jun 30
4
french map
Hello, I would like to know if (as the usa map with Splus), it is possible with R to plot the french map and to add points (representing towns for instance) on the figure in the appropriate (x,y) system. Thank you. Nathalie Peyrard
2002 Mar 04
2
Plotting a x axis from a vector with rownames
Hi all, suppose there is a vector y with rownames: > y cond1 cond2 cond3 cond4 78.952 87.308 86.490 74.040 how can I easily plot this vector using the rownames? plot(y) gives me a plot with a x-axis from 1 to 4 in 0.5 steps, also plot(rownames(y), y) and plot(y ~ rownames(y) don't work. I know I can build a x-axis with axis(1, ...), but in this case I need a character string like
2003 Jun 30
1
make 1.7.1 crashes in Mac OS X
I trying to compile R-.1.7.1 under OS X. Configure worked fine; then make crashes with: /sw/lib/libg2c.a(err.o) definition of common _f__formatted (size 4) /sw/lib/libg2c.a(err.o) definition of common _f__hiwater (size 4) /sw/lib/libg2c.a(err.o) definition of common _f__putn (size 4) /sw/lib/libg2c.a(err.o) definition of common _f__reading (size 4) /sw/lib/libg2c.a(err.o) definition of common
2002 Oct 10
3
Sweave (PR#2142)
In the 'RWeaveLatexSetup' function in the 'tools' package in R 1.6.0 , the code below does not work (pdflatex can't find 'Sweave.sty'): if (stylepath) styfile <- file.path(R.home(), "share", "texmf", "Sweave") else styfile <- "Sweave" In R 1.5.1, that was: if(stylepath) styfile <-
2011 Feb 11
2
dialplan announcements
Hey all, I tried to do some searching but I found snippets and I am having trouble putting it all together. I want to have an option off the IVR that plays back the announcement for the day. At the end of the message, I want the caller to get kicked back to the previous menu. The conditions are that I want the recorder to dial a feature code that prompts him to record the message. He
2011 Sep 15
2
testing simultaneous calls
Asterisk 1.4.26 keeps randomly crashing then restarting itself on my live production. I cannot run valgrind and I do not have the right flags set in menuselect. I can however at the dead of the night run stress tests. I want to simulate x-amount of concurrent calls to both a dtmf dialplan, which is working, as well as MoH dialplan to see if this could be the cause of crashing. How
2004 Jun 03
1
Problem with par("usr")
Hi, I'm trying to use the "usr" argument but I see no effect of this option on my plots. For example: > par(usr=c(0,4,0,4)) > plot(1,1) This plots one point fine, but the coordinates of the plotting region are not those that I specified using par()... I can check this with > par("usr") [1] 0.568 1.432 0.568 1.432 What can I change in order to have this
2004 Sep 28
3
S latex listings
Hello, I would like to insert S code to my latex document. I was looking for a listings package that supports S. In www.r-project.or in the software/other section there is an item with a link to latex package listings, but it seems that the link is broken. Does anybody know an alternative to get the package? Thanks in advance,
2005 Feb 25
1
how to produce disease maps
-------------- next part -------------- An embedded message was scrubbed... From: Martin Maechler <maechler at stat.math.ethz.ch> Subject: Re: producing maps Date: Fri, 25 Feb 2005 00:18:59 +0100 Size: 2511 Url: https://stat.ethz.ch/pipermail/r-help/attachments/20050225/75bb1c86/producingmaps.mht
2005 Sep 09
1
measurement unit
Dear R-list, Could anybody tell me where to find information about changing the measurement unit from inch to centimeters? I read the help from X11, I read R-intro and I did some searhing in the R archives, but I couldn't find the answer. For example, I would like to produce a plot of a certain width and height: X11(width=10, height=5) and I would like these to be centimeters, rather
2007 Sep 27
3
moran's i
i would like to perform moran's analysis with r... thanks duccio
2007 Jan 03
2
Hershey fonts for musical notation?
Hi, I'd like to know if it is possible to use Hershey vector fonts to create very primitive musical notation. If I can hang some whole notes on these lines X11() plot(0,0, xlim=c(0,10), ylim=c(0,10)) # Staves: for (i in c(seq(from=2,to=2.8,by=0.2),seq(from=4,to=4.8,by=0.2))) { abline(h=i) } it is enough. Best wishes, Atte Tenkanen University of Turku, Finland
2006 Feb 08
3
Newbie and MySQL
Please forgive me if this has been answered in another post. I''ve looked around but couldn''t find a solution. I bought the book "Agile Web Development with Rails" and think I''m going to really like it. I went through the first chapter with no problems. However, as I begin developing the database on page 57, I get a consitent error: Before updating scaffolding
2017 Jan 25
2
Backend subtraction changed to negative addition
Hi all, I am writing a custom backend. Doing more testing i notice that for some reason something like: int test(int x) { return x - 1; } is being turned into this IR: ; Function Attrs: nounwind define i32 @test(i32 %n) #0 { entry: %n.addr = alloca i32, align 4 store i32 %n, i32* %n.addr, align 4 %0 = load i32* %n.addr, align 4 %sub = sub nsw i32 %0, 1 ret i32 %sub } But finally in
2003 Jul 22
3
curves with shaded areas?
Hi, I want to make a plot with abline where the area below or above the curve is shaded. I can't find any documentation on that. Can anybody help me with that? thanks, Juffi
2003 Mar 10
3
VIM Syntax Highlighting
Has anyone got vim to have syntax highlighting with R function codes? I know there's something similar that works with emacs (ESS or something like that), but I was wondering if anyone knew an equivalent that worked with vim. Thank you, -- []'s mentus at gmx.de Bitte l?cheln! Fotogalerie online mit GMX ohne eigene Homepage!
2003 Jul 29
1
Sweave: pass scale parameter to includegraphics?
Hi all I'm using Sweave and find it a treat. But one question: I use Sweave to create my pictures which are automatically included into LaTeX. For example, in the file test.Snw, I may have: % LaTeX stuff \begin{figure} <<fig=true,width=5,height=5>>= x1 <- seq(1,5, length=10) x2 <- sin(x1) plot(x1,x2) @ \caption{Plot} \end{figure} % More LaTeX This produces the LaTeX
2003 Oct 21
2
report generator a la epiinfo
Hi I'd like to use R in epidemiology and disease surveillance. In EpiInfo you can have a script (.pgm) which calls a predefined report (.rpt), where a table is calculated and values picked from that table and placed where the author of the report wants them, with text around those values. (Please see example below.) I've looked at manuals, faq, mail-search and google. The closest is an