Displaying 20 results from an estimated 1000 matches similar to: "par(xlog) is not honoured (PR#7111)"
2004 Jul 19
1
par(ann=FALSE) ignored by image() (PR#7112)
Full_Name: Karel 'Clock' Kulhavy
Version: 1.9.0
OS: GNU/Linux
Submission from: (NULL) (212.71.168.94)
par(ann=FALSE) is ignored by image() graphics function.
2004 Jul 19
1
par(cex) is ignored by persp() (PR#7113)
Full_Name: Karel 'Clock' Kulhavy
Version: 1.9.0
OS: GNU/Linux
Submission from: (NULL) (212.71.168.94)
persp() graphing function ignores par(cex).
2004 Jul 19
1
filled.contour() ignores mfrow (PR#7114)
Full_Name: Karel 'Clock' Kulhavy
Version: 1.9.0
OS: GNU/Linux
Submission from: (NULL) (212.71.168.94)
par(mfrow=c(2,1) is ignored by filled.contour().
2008 Mar 26
3
Theora logo master
Hello
I would like to ask if it's possible to display Theora logo at
http://ronja.twibright.com/sw.php
I use Theora for automatically generated videos at
http://ronja.twibright.com/3d/
If yes can I please have the master of the logo? I cannot use the small logo you have
on the website.
Thanks,
Karel Kulhavy
2000 Mar 21
5
par help wrong: xlog & ylog (PR#497)
Full_Name:
Version: 1.0.0
OS: linux
Submission from: (NULL) (193.62.250.209)
?par lists and describes xlog and ylog, though these are obsolete. It does not
list
log. I found out about log from ?plot.defaults--so that help is OK.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2006 Mar 07
1
Fwd: Delete some excluded files in rsync
Begin forwarded message:
> From: Karel Kulhavy <clock@twibright.com>
> Date: 7 March 2006 18:01:43
> To: Martin Pool <mbp@samba.org>
> Subject: Delete some excluded files in rsync
>
> Hello
>
> I suggest that a feature be added into rsync. That one could
> separately
> specify excluded files that should be deleted on the receiver and
> excluded files
2001 Nov 29
1
rug(x) clip warning incorrect if par("xlog")==TRUE (PR#1188)
To wit:
> plot(1:2,1:2,log="x")
> rug(1:2) # should not warn
Warning message:
some values will be clipped in: rug(1:2)
> plot(1:2,1:2,log="x")
> rug(c(0,.1,.2)) # should warn, but does not
>
I believe this fixes the problem:
% diff -c /tmp/orig.rug.R /tmp/cberry.rug.R
*** /tmp/orig.rug.R Thu Nov 29 12:59:00 2001
--- /tmp/cberry.rug.R Thu Nov 29
2002 Nov 13
2
Wandering usr values in par(no.readonly=TRUE) (PR#2283)
>>>>> "Marc" == Marc Schwartz <mschwartz@medanalytics.com>
>>>>> on Wed, 13 Nov 2002 11:01:49 -0600 writes:
Marc> Marc Schwartz wrote:
>> SNIP
>>
>> I am guessing that this may be the result of par("ylog")
>> and par("xlog") being read only and perhaps impacting the
>>
2007 Nov 20
2
Logarithmic axis
Hi there,
I guess this must be a standard issue, but I'm starting to go crazy with it. I
simply want a plot with the x axis being logarithmic, having labels 1, 10,
100..., and ten unlabelled ticks between each of them - just as they
introduce logarithmic axis at school. I've played around a bit with log="x",
xlog=T (where exactly is the difference here?), xaxp, and xaxt
1997 May 11
2
R-alpha: Logarithmic scales
Here are another three problems with logarithmic scales:
1) segments() does not work with logarithmic scales. I suggest to change
lines 962-973 in "plot.c":
for (i = 0; i < n; i++) {
if (FINITE(xt(x0[i%nx0])) && FINITE(yt(y0[i%ny0]))
&& FINITE(xt(x1[i%nx1])) && FINITE(yt(y1[i%ny1]))) {
GP->col = INTEGER(col)[i % ncol];
1998 May 10
2
R-beta: Re: R (par)
1) 'par' doesn't seem to be called from 'plot', as it is in S. I was
able to get the plot to work with:
par(mar=c(5,5,5,5))
plot(a,b)
axis(4,labels=F,tck=0.1)
mtext("blabla",side=4,line=3,cex=1.5)
NOTE: I tried this on the x11() display, which seemed to reproduce the
problem you described.
2) ?? I was unable to get either x or y logarithmic axes using
2006 Jan 23
1
too-large notches in boxplot (PR #7690)
PR #7690 points out that if the confidence intervals (+/-1.58
IQR/sqrt(n)) in a boxplot with notch=TRUE are larger than the
hinges -- which is most likely to happen for small n and asymmetric
distributions -- the resulting plot is ugly, e.g.:
set.seed(1001)
npts <- 5
X <- rnorm(2*npts,rep(3:4,each=npts),sd=1)
f <- factor(rep(1:2,each=npts))
boxplot(X~f)
boxplot(X~f,notch=TRUE)
I can
2002 Nov 12
2
Wandering usr values in par(no.readonly=TRUW) (PR#2283)
--==_Exmh_1801894504P
Content-Type: text/plain; charset=us-ascii
Dear R folks,
Initially I had a plotting routine using logarithmic y-axes that failed after
repeated calls if I tried to restore the graphical parameters (which I wanted to
do because I used `layout' within the routine. I tried to isolate the problem
and found out that the following code with logarithmic axis is sufficient for
2008 Jul 23
1
Calling LISP programs in R
I have written some programs in Common Lisp and I have been using SAS to pipe
those programs to my lisp compiler in batch mode by using the %xlog and
%xlst SAS commands. I wonder if there is in R a similar way to pipe commands
to LISP so that all my work would be concentrated in R even when I have to
call a LISP program? I have looked at the foreign library but this seems to
adjust data types not
2009 Mar 21
1
Forestplot () box size question
Hi All,
I have been able to modify the x-axis to start at zero by adding xlow
and xhigh parameters; that was pretty simple. I have been unable to
find the location of the code that would turn off the information
weighting of the box size (I have smaller randomized trials getting
less weight than a much larger non-randomized trial). The function
is forestplot() from rmeta.
Thanks for any
2004 Aug 31
3
encrypted passwords and /etc/passwd
Hello
Why is it necessary to specify
encrypt passwords = no
to make Samba server start using solely /etc/passwd?
Isn't it possible to tell Samba server that on the way between a client
and the server, the passwords sould be encrypted, and after decryption,
they will be checked against /etc/passwd and not smbpasswd, tdb or
whatever backend?
Cl<
2001 Mar 27
1
username doesn't work
Hello.
I've got samba 2.0.6. My smb.conf file contains:
---------
[myhome]
comment = My Home
path = /home/myhome
username = mary, jack
read only = No
--------
When I run: smbclient '//mycomputer/myhome'
and type valid password for mary or jack.
The answer is:
--------
Password:
session setup failed: ERRSRV - ERRbadpw (Bad password - name/password
2007 Aug 17
2
Date format on x-axis
Dear R users,
Plotting question from a R beginner...
When I try to plot a response through time, for example:
>Date<-c("2006-08-17", "2006-08-18", "2006-08-19", "2006-08-20")
>response<-c(4,4,8,12)
>as.Date(Date)
>plot(Date,response)
The dates on the graphic appear in spanish. This I guess is the default
way of plotting because my
2004 Feb 16
2
Roman numerals in Samba HOWTO collection
Hello
What is the purpose of Roman numbering of pages in Samba HOWTO
Collection?
Cl<
2004 Feb 17
2
+ or \ as winbind separator?
Hello
Samba HOWTO Section 21.5 example 21.5.1:
"# separate domain and username with '+', like DOMAIN+username
winbind separator = +
page cccxxiv: "The only obvious indication that Winbind is being user is
that user and group names take the form DOMAIN\{}user and
DOMAIN\{}group".
What is then the winbind separator? Is it '+' or is it '\'? Or should I