similar to: X11 resources

Displaying 20 results from an estimated 700 matches similar to: "X11 resources"

2001 Dec 06
1
Scheme in R
The initial authors of R said?, "...we implemented the language by first writing an interpreter for a Scheme subset and then progressively mutating it to resemble S." Further on in that article they elaborated that their strategy was to create a parser that would take expressions in S-like syntax and translate them to Scheme S-expressions. Does R still work that way? Can R be made to
2001 Nov 23
0
porting R package to Splus
I am considering getting the rpvm package for running a parallel virtual machine working on Splus. That package contains a considerable amount of C-level code written to interface R with the pvm3 library functions and of course all of it uses the R macros and conventions associated with the R-style ".Call". It looks as though it might be possible to automatically transform that code to
2000 Oct 02
9
the underscore ("_") in variable name
At 14:35 02/10/00 +0800, mohd zamri wrote: >new to R and starting to learn to program R. The underscore ("_") did some >suprising result. e.g > >> c <- c(1,2,3,4,5) >> mean(c) >[1] 3 >> c_mean <- mean(c) >> c >[1] 3 > >having some experience in C, I thought the underscore is "always" valid in >variable name. totally confuse
1998 Nov 30
1
[R] R functionality
> Date: Mon, 30 Nov 1998 12:07:10 -0500 > From: Paul Gilbert <pgilbert@bank-banque-canada.ca> > To: Ed Kademan <kademan@phz.com> > > >Is there anything R can do that Splus can't? > > Problems which require lots of looping and cannot be re-coded as vector/matrix > operations are theoretically possible but practically infeasible in S, unless > they
2003 Apr 28
1
ylab in time series plot (PR#2869)
You get a warning message when you specify a ylab parameter while plotting data whose x's are POSIXct values. Apparently the `axis.POSIXct' method tries to reset the ylab---via the ... parameter---after it has already been set by higher level methods. Here is a function that illustrates the problem. ylabProblem <- function() { x <- ISOdate(2003, 4, 1:10) # POSIXct
2005 Sep 26
2
Help: x11 position in the Unix environment
Hello, In the Unix environment, I open a window by x11(). May I specify the position of this window by specifying the position of the top left of the window as in Windows environment? Or some other parameters can be used to do that? Thank you, Shengzhe
2001 May 29
4
any way to set X11() device geometry (screen offsets)?
I am writing an R program to plot data as part of a real time display in a network operations center (NOC). Is there any way, when starting an X11 device in R, to control the location of the plotting window on the screen? I want to put up nine x11 plot windows at different places on the display, and I want the operators to be able to rearrange the window as they see fit by mousing around
2003 Apr 30
2
ylab in plot.POSIXct
I am using R-1.7.0 and have some data which consist of one vector of numbers and a second corresponding vector of dates belonging to the POSIXct class. I would like to plot the numbers against the dates. What is the best way to do this? It almost works to just call `plot.' However if I do this while using the `ylab' parameter I get a warning message: parameter "ylab"
2008 May 26
2
windows opening off screen
Hi, I'm having problems with windows which open off-screen and are thus inaccessible. Until recently, I ran my laptop with an external monitor in a dual-screen configuration. Now, I'm back to a single screen, but some wine apps appear to be trying to start up elsewhere. So, I can verify that the program is running using ps and xwininfo: wtipton 6652 26.5 2.3 2662984 36500 ?
1998 May 28
0
ALERT: Tiresome security hole in "xosview", RedHat5.1?
Hi, I am bemused. After some security auditing on RH5.0, I was curious as to what new suid binaries and daemons shipped with RH5.1. The first one I noticed was "xosview". God knows why it needs to be SUID; it probably doesn''t but the makefile just makes the binary suid by default. Linux has /proc which has enough information that ferreting around in /dev/kmem using root privs
2010 Sep 02
0
NCS - Cablemodem
Hi all, I am configuring asterisk in a cable modem network, using a motorola TM401A. I can make calls from the MTA but I can receive, display the following error: -- Executing [1500 at alberti:1] Dial("OSS/dsp", "MGCP/aaln/1 at 0-13-11-82-bd-a.ssw.intercal.net|30") in new stack [Sep 2 00:10:53] NOTICE[28062]: chan_mgcp.c:3572 mgcp_request: Asked to get a channel of
2015 Apr 04
1
systemctl (again)
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 <snip> > > This would be better served as the following to accomplish the > immediate goal: > > cat > /etc/systemd/system/timidity.service <<EOF [Unit] > Description=timidity daemon > > [Service] User=jmr Group=users WorkingDirectory=/home/jmr > Type=forking ExecStart=/usr/bin/timidity -iAD EOF > >
2004 Mar 26
2
With which version of XFree86 can R compile?
Hi there, No information was found which version of XFree86 get along with R. I could not compile R version 1.8.1 with XFree86 4.3.99.902. Here is error message. gcc -I. -I../../../src/include -I../../../src/include -DI18N_MB -I/usr/X11R6/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -fPIC -O2 -pipe -march=i386 -mcpu=i686 -c dataentry_mb.c -o dataentry_mb.lo In
1998 Nov 30
3
R functionality
Is there anything R can do that Splus can't? I know about the differences in the language but what about statistical functionality. Are there models you can build or graphs you can plot in R that you can't in Splus? My impression is that in this respect R is strictly a subset. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
1997 May 14
4
cxterm buffer overrun
cxterm is a Chinese terminal emulator for the X Window System. It''s installed as suid-root by default if you did a make install. Just like xterm, it does needs to be suid to update /etc/utmp...blahblah... I discovered some buffer overflow bugs in it. The code attached below is the exploit. Quick fix? chmod -s /path/cxterm
2015 Mar 09
0
[ANNOUNCE] libX11 1.6.3
This release of libX11 looks bigger than it is, due to a lot of spec/doc cleanup work that doesn't affect the code itself. There is still a good deal of bug fixes, code cleanup, locale improvements, and compose key table additions, including new UTF-8 compose sequences for: <Multi_key> <R> <equal> : "<U+20B9>" U20b9 # INDIAN RUPEE SIGN <Multi_key>
2001 Oct 22
3
round() doesnt (PR#1138)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel 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-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
2002 Mar 08
4
ARMA and ARIMA modeling
I'd like to play with ARIMA models of stock prices, but I am a complete novice. Could some kind soul explain the relationship among packages "ts", "tseries", "dse", "dse2", and "fracdiff"? Are they 'competing' products or does one depend on another? Where would be the best place for a novice to begin? Thanks for any advice. PS. I
2006 Jan 06
2
sudoku
Any doubts about R's big-league status should be put to rest, now that we have a Sudoku Puzzle Solver. Take that, SAS! See package "sudoku" on CRAN. The package could really use a puzzle generator -- contributors are welcome! -- David Brahm (brahm at alum.mit.edu) [[alternative HTML version deleted]] _______________________________________________ R-packages mailing list
2006 Jan 06
2
sudoku
Any doubts about R's big-league status should be put to rest, now that we have a Sudoku Puzzle Solver. Take that, SAS! See package "sudoku" on CRAN. The package could really use a puzzle generator -- contributors are welcome! -- David Brahm (brahm at alum.mit.edu) [[alternative HTML version deleted]] _______________________________________________ R-packages mailing list