Displaying 13 results from an estimated 13 matches for "3dfalse".
2008 Aug 07
1
Bug in format.default(): na.encode does not have any effect for (PR#12318)
...ttps://stat.ethz.ch/pipermail/r-help/2007-October/143881.html
- http://tolstoy.newcastle.edu.au/R/e2/devel/06/09/0360.html
It works for other (say character) classes!
> format(c("a", NA), na.encode=3DTRUE)
[1] "a " "NA"
> format(c("a", NA), na.encode=3DFALSE)
[1] "a" NA
I explored this a bit and found out that format.default() uses prettyNum(.I=
nternal(format(...)))
for formatting the logical, numeric, complex, ... classes. Simple tests (se=
e bellow) show that
.Internal(format()) does not obey the na.encode argument.
## Encode NA as "...
2008 Feb 08
0
xspline(..., draw=FALSE) fails if there is no open device (PR#10728)
jari.oksanen at oulu.fi wrote:
> Full_Name: Jari Oksanen
> Version: 2.6.2 RC (2008-02-07 r44369)
> OS: Linux
> Submission from: (NULL) (130.231.102.145)
>
>
> Even if function xspline() is called with argument draw=3DFALSE, it req=
uires a
> graphics device (that it won't use since it was draw=3DFALSE). I run in=
to this
> because I intended to use xspline within a function (that does not yet =
draw:
> there is plot method for that), and the function failed when called in =
a virgin
> environment.=20...
2008 Aug 17
1
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12557)
...he same number of rows (or cases) as the name of the =
file. Thus, data10000 has 10,000 observations, and data300000 has 300,000 =
observations.
Here is my history which shows the problem, and inconsistency in memory all=
ocation reporting:
> data=3Dread.csv("data10000.csv",header=3DFALSE)
> partial=3Dsample(data,5000,T)
> data=3Dread.csv("data100000.csv",header=3DFALSE)
Error in file(file, "r") : cannot open the connection
In addition: Warning message:
In file(file, "r") :
cannot open file 'data100000.csv': No such file or d...
2008 Nov 06
3
.C(..., DUP=FALSE) memory costs depending on input size?
...t; C
*/
void commTest(double* a, double* b) {
/* Do ab-so-lute-ly-nothing.. */
}
System Details:
---------------------
Linux gpu 2.6.18-6-amd64 #1 SMP Thu May 8 06:49:39 UTC 2008 x86_64 GNU/Linux
R version 2.7.1 (2008-06-23)
--
View this message in context: http://www.nabble.com/.C%28...%2C-DUP%3DFALSE%29-memory-costs-depending-on-input-size--tp20368695p20368695.html
Sent from the R devel mailing list archive at Nabble.com.
2008 Aug 18
0
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12560)
...) as the name of the =
> file. Thus, data10000 has 10,000 observations, and data300000 has 300,000 =
> observations.
>
> Here is my history which shows the problem, and inconsistency in memory all=
> ocation reporting:
>
> > data=3Dread.csv("data10000.csv",header=3DFALSE)
> > partial=3Dsample(data,5000,T)
> > data=3Dread.csv("data100000.csv",header=3DFALSE)
> Error in file(file, "r") : cannot open the connection
> In addition: Warning message:
> In file(file, "r") :
> cannot open file 'data100000.csv...
2009 Feb 10
1
how to use axes=FALSE to get multple plots?
...can just make ylab="" and draw the right-hand axis name
with mtext, but that then I would need to check par(mgp), to find where
place it, etc. I'm thinking that I am just missing something in my
understanding.
--
View this message in context: http://www.nabble.com/how-to-use-axes%3DFALSE-to-get-multple-plots--tp21934005p21934005.html
Sent from the R help mailing list archive at Nabble.com.
[[alternative HTML version deleted]]
2000 Aug 09
0
circles overshoot
...t;circles overshoot</TITLE>
</HEAD>
<BODY>
<BR>
<P><FONT SIZE=3D2>Anyone ever tried to</FONT>
</P>
<P><FONT SIZE=3D2>plot(c(1.0,0,2),c(1.0,0,2));</FONT>
<BR><FONT =
SIZE=3D2>symbols(c(1.0),c(1.0),circles=3D(c(1.0)),inch=3DFALSE,add=3DTRU=
E); #?</FONT>
</P>
<P><FONT SIZE=3D2>Why does the circle overshoot ?</FONT>
</P>
<P><FONT SIZE=3D2>The problem is the same on all devices (even with my =
pictex, which needs a lot of refurbishing), so I'd think it's something =
up...
2000 Aug 09
0
Circles on all R devices
...es on all R devices</TITLE>
</HEAD>
<BODY>
<BR>
<P><FONT SIZE=3D2>Anyone ever tried to</FONT>
</P>
<P><FONT SIZE=3D2>plot(c(1.0,0,2),c(1.0,0,2));</FONT>
<BR><FONT =
SIZE=3D2>symbols(c(1.0),c(1.0),circles=3D(c(1.0)),inch=3DFALSE,add=3DTRU=
E);</FONT>
</P>
<P><FONT SIZE=3D2>Why does the circle overshoot ?</FONT>
</P>
<P><FONT SIZE=3D2>The problem is the same on all devices (even with my =
pictex, which needs a lot of refurbishing), so I'd think it's something =
upstr...
2004 Nov 24
1
(PR#7393) Re: dhyper() does not allow non-integer values for
...yper(1,10,90,10)
> phyper(1,10.5,90,10)
>
> # OK
> qhyper(0.71,10,90,10)
> qhyper(0.71,10.5,90,10)
>
> # OK
> rhyper(1,10,90,10)
> rhyper(1,10.5,90,10)
>
>
>
> # this "naive" version of dhyper() works
>
> dhyperx<-function(x,m,n,k,log=3DFALSE){
> lp<-lchoose(m, x) + lchoose(n, k-x) - lchoose( m+n, k)
> if (log) {lp} else {exp(lp)}
> }
>
> # OK
> dhyperx(1,10,90,10)
> dhyperx(1,10.5,90,10)
>
>
>
> Erik J=F8rgensen
> Danish Institute of Agricultural Sciences
>
>
>
> -...
2009 Feb 16
1
incl.non.slopes=FALSE does not work at predict.lm
...me.6 + time.7 + pcinc + I(pcinc^2) + I(pcinc^3),
data=ekc)
p.fe.nox<-predict.lm(fe.nox, new, interval = "prediction", level=0.95,
incl.non.slopes=FALSE)
Any Help would be highly appreciated
Thanks
Dimitris
--
View this message in context: http://www.nabble.com/incl.non.slopes%3DFALSE-does-not-work-at-predict.lm-tp22046749p22046749.html
Sent from the R help mailing list archive at Nabble.com.
2014 Dec 01
0
No subject
...ng: quoted-printable
<p dir=3D"ltr">From my original reply.<br>
Open the /etc/default/icecast2 file as root in an editor. The last line nee=
ds to be changed to</p>
<p dir=3D"ltr">ENABLE=3Dtrue<br>
It still looks like it is set to <br>
ENABLE=3Dfalse</p>
<br><div class=3D"gmail_quote"><div dir=3D"ltr">On Tue, Aug 25, 2015, 7:58 =
AM=C2=A0 <<a href=3D"mailto:Nick at 4points.ca">Nick at 4points.ca</a>> wro=
te:<br></div><blockquote class=3D"gmail_q...
2000 Aug 09
1
circles overshoot (PR#629)
...t;circles overshoot</TITLE>
</HEAD>
<BODY>
<BR>
<P><FONT SIZE=3D2>Anyone ever tried to</FONT>
</P>
<P><FONT SIZE=3D2>plot(c(1.0,0,2),c(1.0,0,2));</FONT>
<BR><FONT =
SIZE=3D2>symbols(c(1.0),c(1.0),circles=3D(c(1.0)),inch=3DFALSE,add=3DTRU=
E); #?</FONT>
</P>
<P><FONT SIZE=3D2>Why does the circle overshoot ?</FONT>
</P>
<P><FONT SIZE=3D2>The problem is the same on all devices (even with my =
pictex, which needs a lot of refurbishing), so I'd think it's something =
up...
2001 Feb 16
1
Sub_scribe and a question
...t <- 0; rvt <- 0; RV <- 0; j =
<- 0; k <- 0;
x2 <- 0; R <- 0; Rxx <- 0; Ryy <- 0; Rxy <- 0; Ryx <- 0; Rvmax <- 0
# Calculate the trace of a matrix (sum of its diagonal elements)
Trace <- function(y) {sum(c(y)[1 + 0:(min(dim(y)) - 1) * (dim(y)[1] + =
1)], na.rm=3DFALSE)}
for (i in 1:runs) {
x <- abs(rnorm(22*22)); dim(x) <- c(22, 22)
timing <- system.time({
# Calculation of Escoufier's equivalent vectors
p <- ncol(x)
vt <- 1:p # Variables to test
vr <- NULL...