similar to: plot to postscript orientation

Displaying 20 results from an estimated 300 matches similar to: "plot to postscript orientation"

2007 Jun 14
1
names() after library(RDCOMClient) problem(?)
Hello, Try example(names) in R 2.5.0 after library(RDCOMClient) and you get > example(names) names> # print the names attribute of the islands data set names> names(islands) Error in names(islands) : no applicable method for "names" > Is this normal? Any way round it??? Best regards, Costas ---------------------------------- Costas Vorlow
2008 Jun 19
1
How can I shade the background area of a zoo time series object between specific dates?
Dear list members, How can I shade the background area of a zoo time series object between specific dates? eg. library(tseries) library(zoo) SP500<-get.hist.quote("^GSPC", start = "1990-01-01", quote = "Close") plot(SP500) How can I produce the same plot but with a (say) red background between 2007-04-12 and 2008-05-14 ?
2008 Apr 14
1
ctv, install.views, install.packages (& update.packages)
Dear all, Wouldn't it be helpful if the install.views install.packages update.packages had a "downloadonly=TRUE" flag which would allow us to download the packages and install them later (or put them in a USB stick and take them for installation on anothe PC). I am behind a firewall (Bank) and I have serious plroblem updating R or installing views (Finance, Econometrics etc.
2007 Oct 17
0
Miruna Asterisk System Released
I'm very happy to announce the first stable version of my little creation: Miruna Asterisk System. This version run only on Soekris 4801 board, but I think if we change kernel run on other boards:) You can download it at: http://sourceforge.net/projects/miruna-asterisk/ In next days I'll setup a wiki and a forum to help/documentation/bugs. Sorry for horrible doc (now), I'm writing
2006 Apr 23
3
Error on new install "View Application''s Environment"
Hello. I recently installed Rails on Gentoo, and did a "rails /var/www/localhost/htdocs/parallel_bible/" just to test. Everything *seemed* to work fine, but when I clicked on the "View your Application''s Environment" link, this happens (screenshot attached): http://thegoban.com/rorerror.png Any ideas? Is this normal? I know it''s not actually stopping me
2010 Jul 08
4
Dell OpenManage
Hi Everyone, I have a Xen host (Xen 3.4.2) which is running CentOS 5.5 Dom0. I wish to install Dell OpenManage to get a nice web interface with hardware status. Do I need to do anything special to get this working on a Xen host? Or does it work out of the box? The reason why I''m asking, instead of trying, is that my server is currently on its way to a colo, and I won''t have
2001 Jan 15
2
WMF on Unix
A few of you have helpfully sent me references to WMF formats. There is also some code to _read_ it at http://www.csn.ul.ie/~caolan/docs/libwmf.html However, the issue is to _write_ WMF on R under Unix. I am told (by someone who has tried) that the problem is the if you write a WMF file according to the published specs (which were once issued by Microsoft) you find that e.g. Word does not read
2008 Jul 06
2
Issue with postscript figures using WinAnsi encoding
Hi there, I've hit a bump in writing postscript files with special characters in the WinAnsi encoding on a windows machine. Here's some sample code: ########################################### postscript(file = "test.eps", encoding="WinAnsi.enc", width = 3, height = 5.5, onefile = TRUE, horizontal=FALSE, family = "sans", title =
2001 Oct 23
1
Connection Timeout
This is my first post so first of all I will say hello to everyone. I have rsync configured and working properly on my local network however when I try to connect from a remote host (one located in a different state) the connection times out. I was wondering if there was another way to set the timeout besides in the rsyncd.conf file? As I said the connection works fine on the internal lan, but
2009 Jun 22
3
ubuntu, samba and users autheticated over AD
Hi:) I try to make an ubuntu with samba to authenticate users from AD. samba, krb5 installed. smb.conf - no errors krb5.conf - no errors it's workig: kinit klist i can see the shares from AD I added the linux samba server in domain: kinit gabriel@MYDOMAIN.LOCAL net ads join -U gabriel%password after that i've got a message: Using short domain name -- MYDOMAIN Disabled account
2012 Dec 05
1
NFS, deleting folder issue
Hi there, I use dovecot on a server with some Nightmare File Systerm (aka NFS) storage. When I delete a folder, its content gets deleted, but the folder itself does not. Here's what I found: #### Step 1: From a shell, telnet to imap, then create a folder cpetrescu at cpetrescu-mobile:~$ telnet server1.localdomain 143 Trying 10.200.28.36... Connected to server1.localdomain. Escape
1999 Nov 12
1
Wanted: online Introduction to R
As a complete newcomer I am attempting to learn to use R, but am finding it extremely difficult because I have not yet found an "Introduction to R". For over a week now I have monitored the R-help list, studied the R-FAQ and related documents, downloaded and run the Windows R and looked at the Help, downloaded early and late samples of the R-help archives, and searched for illuminating
2004 Jul 22
1
viewing Postscript file
Is there any R function that can display a Postscript file that is already in the working directory? For example, if 'graph.ps' is such a file, I'd like to type something like this: > plot.postscript.file(file = 'graph.ps') If no such function exists, I'd be interested in a way to use existing R functions to do this under UNIX or Windows, preferably without a system
2007 Jan 03
6
R grahics: Save as hangs computer
Hello list, I have encountered a problem trying to save graphs using the R-graphics menu: File|Save as. The menu suggests that files may be saved as either Metafile, Postscript, pdf, png, bmp, jpeg. When I specify any of those file formats a menu comes up requesting a file name. After providing a name R invariably hangs and has to be restarted. I am able to save files under the various
2005 Aug 22
1
Example in pdf() help file (PR#8083)
The example in the help file for pdf() plots the characters outside the plotting area in this for loop: for(i in c(32:255)) { x <- i y <- i points(x, y, pch=i) } The following loop seems to be working as intended for(i in c(32:255)) { x <- (i-31)%%16 y <- (i-31)%/%16 points(x, y, pch=i) } As an extra
1999 Jul 27
3
Summary - Re: R-Graphics
Thanks to all who replied. Mostly the suggestion was to add the argument horizontal= FALSE to the postscript function. However, I was trying to generate a landscape graph. The "fault" lies with gs as Peter Dalgaard pointed out. Under Windows 95, gsview has an option to view landscape or portrait and therefore this problem does not arise on that platform.
2009 Feb 06
2
undesired grid in ps/eps outputs generated by filled.contour or image
Hi! Whenever I save a graphic in ps/eps format generated by filled.contour or image, an undesired grid is added to it (not visible on the X11 screen). For example: postscript("volcano.eps") filled.contour(volcano,col=gray(seq(0,1,,50)),levels=seq(min(volcano),max(volcano),,50)) dev.off() Any ideia how to eliminate this grid? Thanks, Rachel [[alternative HTML version deleted]]
2004 Jul 13
2
Permissions problem...I must be overlooking *something*...
I have a share I can't seem to create files on, and I can't figure out why. I get "Access denied" from Windows, and the samba log shows this: [2004/07/13 10:52:26, 2] smbd/open.c:open_directory(1293) open_directory: failing create on read-only share [2004/07/13 10:52:26, 2] smbd/open.c:open_directory(1293) open_directory: failing create on read-only share The share has the
2009 Jul 29
3
winbind and getent
Hi, I have a samba share on centos5 that uses AD authentication. I can do wbinfo -u and it returns the AD users.. but getent only returns the local centos users. Any pointers on where i have gone wrong? I am trying to chown to an AD user/group, but it is now working.. is the format chown domain\user:domain\group path/to/file ? Thanks..
2006 May 15
1
PDF viewer?
Hi, I'm looking for a usable PDF viewer with CentOS 4.3. On my previous install (Slack running XFCE with a handful of GNOME libs), I used Evince, which is just great. Looks like this is an Achilles' heel in CentOS, as I tested three available PDF viewers (ggv, gsview, acroread) with various PDF documents downloaded from the internet (which all display perfectly with Evince): either the