similar to: Printing help

Displaying 20 results from an estimated 100000 matches similar to: "Printing help"

2005 Sep 02
1
setup.exe installation ( inno setup ) fails wine-20050830
When i tested a setup program made with inno setup, the program complaints about the target directory. It worked with the previou version. Is there a new configuration to be made ?
2006 Jun 16
1
problem with legend on other graphics devices
Hi, I have a bit of a problem with a legend in png, eps and pdf plots produced from a custom plotting function. I was writing a little function to produce some stock plots for a routine analysis conducted in our lab. I have a wrapper function figures() (see below) that produces eps, png and pdf versions of the lab output. When I draw the plot on the X11() device the correct amount of space is
2012 Aug 09
1
How to find data in a map according to coordinates?
Hello, I have created a spatial map of temperature over an area thanks to interpolation. So I have temperature data everywhere on my map. My question is: how can I find temperature data on my map for a specific location according to coordinates? For this, I have a data frame containing 4 columns: "x" for longitude, "y" for latitude, "z" for altitude" and
2003 Feb 25
2
Printer Passwords and Print Auditing
Hello to all you folks, I've got TWO questions. 1) I've been trying to password the use of my two laser printers so that printing has to be assisted by my computer attendant (we are losing too much paper and toner to people clicking print five to ten times). But, I have not figured out how to force passwords on my samba printer (HP LJ1200 running under cupsd and samba). Is it possible
2011 Mar 07
1
postscript cuts off left margin
I am using the following commands: postscript(file="test.eps",paper="special",width=6,height=6,horizontal=FALSE) # fake data x <- c(12,13,14) y <- c(41,42,43) plot(x,y,type="n",xlab=expression(paste("log ",nu[peak]," [Hz]",sep="")),ylab=expression(paste("log ",L[peak]," [",ergs,"
2009 May 20
1
sem with categorical data
I am trying to run a confirmatory factor analysis using the SEM package. My data are ordinal. I have read http://socserv.mcmaster.ca/jfox/Misc/sem/SEM-paper.pdf. When I apply the hetcor function, I receive the following error: Error in checkmvArgs(lower = lower, upper = upper, mean = mean, corr = corr, : at least one element of 'lower' is larger than 'upper' Example:
2005 Jan 02
2
Booting * from CF
Hi All, I've read J.R. Richardson's paper "Create an Embedded Asterisk Server" which outlines making a Debian server that boots from a compressed disc image on a CF card. I'm really interested in this as I want my * server to be more like an appliance than a PC. However, the paper is only an outline and some of the processes of pruning the installation down to a minimum are
2002 Mar 05
1
Printing Unsolved: samba-2.2.3a, w2k and point & print (HP printers?)
Hi all, SHOULD POINT AND PRINT WORK WITH OPTIONAL DEVICE PARTS (eg. DUPLEX UNIT)? (If anyone managed to get it work please tell me:-)) Problem Description: =============== We have samba-2.2.3a (with patched srv_spoolss_nt) running on SuSE 7.3 with kernel version 2.4.17-SMP. Clients are running Windows 2000 SP2. We have several HP printers. We want to distribute the print drivers using
2010 Dec 21
1
Problem with Landscape printing
I am having problem printing in Landscape mode. I have a program that requires landscape printing. I have a Canon ip2770 attached directly to my machine, and is configured properly in Cups, correct driver and all. OpenOffice works perfectly in Portrait and Landscape printing. In Wine, Portrait printing works perfectly for my program and the Wine Notepad. However, in both my program and the
2001 Nov 28
2
Value lables, variable lables
I'm looking for an analogy to SPSS and "variable lable" and "value lable" in R. I have a copy of S+4.0 and can't find any info in their docs, and don't find it in R-intro either. In SPSS, for each variable, there is a name like VAR001 and a variable lable (a longer descriptive string) like Respondent ID and for many of the values of other variables there are
2009 Dec 04
2
Dividing a pixel image into factors - (cut.im(), cut.default())
Hi, I have a numeric pixel image which I would like to divide into factors for analysis in Spatstat. I have found that I can use cut.im() function to divide the range of pixel values into a series of equal length intervals (e.g. if my pixels values range from 0 to 60, cut.im(X.im,breaks=2) will produce two factors one containing pixel values 0-30 and one containing pixel values of 30 - 60, or
2004 Aug 03
0
strange tickmarks placing in image
Hello, I've a problem aligning tickmarks to an image. I've created a correlation matrix for 84 datasets. I'm visualizing the matrix as an image with colour coding according to the correlation coefficient. The 84 datasets are distributed over three factors, but the desgin is unbalanced, so that the tickmarks and the lables for the axis must not evenly distributed. A regular grid via
2010 Apr 07
2
recoding variables-recode not working
Hi, I have numerical variable that I want to recode into categories '0' and '1 and more' and do analysis with that data. I have tried various of possibilities to do so, but I am sucked and nothing is working. recode(Q12, "0='A';1:30='B'") cut(Q12, breaks=c(0,1,30), lables=c('0', '1 and more')) cat(Q12, "0=0;1-33=1") What should
2013 Nov 05
1
[LLVMdev] Multimedia IO instructions & partial backend implementations for simple CPUs
On 3 November 2013 05:44, Sean Silva <chisophugis at gmail.com> wrote: > LLVM doesn't provide a runtime or "VM". You basically do these things the > same way that you do them in C. Yes, this unfortunately requires knowing > your target platform's system libraries and how to link to them and such; > LLVM doesn't paper over this. OK. So to be specific, I am
2011 Jul 07
0
printing problem from a program with wine
i'm trying to set up a customer who has two printers attached to their computer one is some sort of okidata color laser printer, which seems to work fine the other one is a brother HL-4040CDN, which prints fine from a Linux based application such as open office. when i try to print from a program in wine, however, I can't for the life of me get it to print properly to legal sized paper,
2005 Dec 08
1
grid graphics gpar(fill) argument and jpeg device
Hi everybody, I just notice a strange behaviour of gpar's fill argument when using non-postscript devices: The default of the argument is transparent (according to get.gpar("fill")). So as expected, the following code draws a nice red rectangle in the middle of my X11 or postscript device. pushViewport(viewport(width=0.5, height=0.5)) grid.rect(gp=gpar(fill="red"))
2018 Apr 19
1
[PATCH] kvmalloc: always use vmalloc if CONFIG_DEBUG_VM
On Thu, 19 Apr 2018 17:19:20 -0400 (EDT) Mikulas Patocka <mpatocka at redhat.com> wrote: > > > In order to detect these bugs reliably I submit this patch that changes > > > kvmalloc to always use vmalloc if CONFIG_DEBUG_VM is turned on. > > > > > > ... > > > > > > --- linux-2.6.orig/mm/util.c 2018-04-18 15:46:23.000000000 +0200 >
2004 Apr 28
0
Release candidate 1 of lme4_0.6-1
Deepayan Sarkar and I have a source package of release candidate 1 of the 0.6 series of the lme4 package available at http://www.stat.wisc.edu/~bates/lme4_0.6-0-1.tar.gz This package requires Matrix_0.8-6 which has been uploaded to CRAN and should be available in a few days. A copy of the source package is available as http://www.stat.wisc.edu/~bates/Matrix_0.8-6.tar.gz
2004 Apr 28
0
Release candidate 1 of lme4_0.6-1
Deepayan Sarkar and I have a source package of release candidate 1 of the 0.6 series of the lme4 package available at http://www.stat.wisc.edu/~bates/lme4_0.6-0-1.tar.gz This package requires Matrix_0.8-6 which has been uploaded to CRAN and should be available in a few days. A copy of the source package is available as http://www.stat.wisc.edu/~bates/Matrix_0.8-6.tar.gz
2012 Jul 10
0
Thanks! RE: boxplot with "cut"
Thanks for your help, Rui! That works and will save me a lot of trouble. --Kelly -----Original Message----- From: Rui Barradas [mailto:ruipbarradas at sapo.pt] Sent: Tuesday, July 10, 2012 2:24 AM To: Vining, Kelly Cc: r-help at r-project.org Subject: Re: [R] boxplot with "cut" Hello, Maybe this iss what you're looking for. GD is your data.frame. multi.boxplot <-