Displaying 20 results from an estimated 155 matches for "inas".
Did you mean:
ina
2004 Oct 20
1
Drawing multiple line plots
...nd best wishes from the festive times here at Kolkata, India -- the time of Durga Puja celebrations.
I seek your advice as I try plotting lines for my data. The problem:
I have created a dataframe that looks like this (name: myFrame):
lowest second third fourth highest significance
INAS 0.107 0.115 0.123 0.115 0.166 0.000
MMA 0.091 0.107 0.115 0.142 0.179 0.000
DMA 0.126 0.103 0.126 0.129 0.142 0.031
The numbers in the dataframe indicate values of a continuous variable INMET (indicating ratio of inorganic arsenic vesus methylated arsenic species) for...
1997 Jun 02
2
R-beta: Postscript command fails
We are getting the following error:
> postscript(file="Rplot.ps")
Error in device("postscript", as.character(c(file, paper, family, bg, :
unable to start device postscript
This is R-0.49 under SunOS 4.1.3 and under Linux (kernel 2.0.0).
The command worked fine on R-0.14 under the 2 above operating systems.
Any ideas?
Ina
2018 May 29
1
Difficulty in writing R code for one pool dynamic model
Hi everyone,
I was trying to mode the following exercise using R.
The question: Set up a one pool model using numericintegration. The model will run from time 1 to time 30 using a time step of 1.The pool (A) will be fed by flux "inA" at a rate of 5 units per hour anddrained by flux "outA" at a rate of 20% per hour. At time 0, A has 5units. At time 30, what is the pool size of
2023 Dec 19
1
[External] Re: zapsmall(x) for scalar x
>>>>> Steve Martin
>>>>> on Mon, 18 Dec 2023 07:56:46 -0500 writes:
> Does mFUN() really need to be a function of x and the NA values of x? I
> can't think of a case where it would be used on anything but the non-NA
> values of x.
> I think it would be easier to specify a different mFUN() (and document this
> new argument)
2023 Dec 18
1
[External] Re: zapsmall(x) for scalar x
Does mFUN() really need to be a function of x and the NA values of x? I
can't think of a case where it would be used on anything but the non-NA
values of x.
I think it would be easier to specify a different mFUN() (and document this
new argument) if the function has one argument and is applied to the non-NA
values of x.
zapsmall <- function(x,
digits = getOption("digits"),
2023 Dec 18
1
[External] Re: zapsmall(x) for scalar x
Le 18/12/2023 ? 11:24, Martin Maechler a ?crit?:
>>>>>> Serguei Sokol via R-devel
>>>>>> on Mon, 18 Dec 2023 10:29:02 +0100 writes:
> > Le 17/12/2023 ? 18:26, Barry Rowlingson a ?crit?:
> >> I think what's been missed is that zapsmall works relative to the absolute
> >> largest value in the vector. Hence if
2023 Dec 16
1
zapsmall(x) for scalar x
I was quite suprised to discover that applying `zapsmall` to a scalar value has no apparent effect. For example:
> y <- 2.220446e-16
> zapsmall(y,)
[1] 2.2204e-16
I was expecting zapsmall(x)` to act like
> round(y, digits=getOption('digits'))
[1] 0
Looking at the current source code, indicates that `zapsmall` is expecting a vector:
zapsmall <-
function (x, digits =
2023 Dec 18
1
[External] Re: zapsmall(x) for scalar x
>>>>> Serguei Sokol via R-devel
>>>>> on Mon, 18 Dec 2023 10:29:02 +0100 writes:
> Le 17/12/2023 ? 18:26, Barry Rowlingson a ?crit?:
>> I think what's been missed is that zapsmall works relative to the absolute
>> largest value in the vector. Hence if there's only one
>> item in the vector, it is the largest, so its
2023 Dec 17
1
zapsmall(x) for scalar x
Zapping a vector of small numbers to zero would cause problems when
printing the results of summary(). For example, if
zapsmall(c(2.220446e-16, ..., 2.220446e-16)) == c(0, ..., 0) then
print(summary(2.220446e-16), digits = 7) would print
Min. 1st Qu. Median Mean 3rd Qu. Max.
0 0 0 0 0 0
The same problem can also appear when
2023 Dec 18
1
[External] Re: zapsmall(x) for scalar x
Le 17/12/2023 ? 18:26, Barry Rowlingson a ?crit?:
> I think what's been missed is that zapsmall works relative to the absolute
> largest value in the vector. Hence if there's only one
> item in the vector, it is the largest, so its not zapped. The function's
> raison d'etre isn't to replace absolutely small values,
> but small values relative to the largest.
2023 Dec 17
1
zapsmall(x) for scalar x
Isn?t that the correct outcome? The user can change the number of digits if they want to see small values?
--
Change your thoughts and you change the world.
--Dr. Norman Vincent Peale
> On Dec 17, 2023, at 12:11?AM, Steve Martin <stevemartin041 at gmail.com> wrote:
>
> ?Zapping a vector of small numbers to zero would cause problems when
> printing the results of summary().
2023 Dec 17
2
[External] Re: zapsmall(x) for scalar x
I think what's been missed is that zapsmall works relative to the absolute
largest value in the vector. Hence if there's only one
item in the vector, it is the largest, so its not zapped. The function's
raison d'etre isn't to replace absolutely small values,
but small values relative to the largest. Hence a vector of similar tiny
values doesn't get zapped.
Maybe the line
2005 Jan 10
2
Query: simple autocorrelation ina time series
I hope you can help with what might be an easy query.
I am doing some simple simulations where I am generating series of data
from a normal distribution using rnorm. I am then treating these as a
time series. I want to know how I can incorporate correlation in the
series (autocorrelation) i.e. make the observations non-independent,
with a known (but simple) correlation structure. In other words I
2005 Jun 07
3
without a loop
tmp <- c(-1,NA,NA,1,1,NA,NA,1)
without using a loop, how can I replace all NAs in the list above with
the previous none NA value in the list?
2009 Sep 14
0
highlighting constants
Hi,
a developer asked me something (we were talking about a issue in R
highlighting)
Here it is:
"P.S.: Shouldn't constants like TRUE, FALSE, Inf, NaN, NA ... be marked
up too?"
Like in:
#
iNA <- as.integer(NA)
#
!is.na(Inf) & !is.nan(Inf) & is.infinite(Inf) & !is.finite(Inf)
#
!is.na(-Inf)& !is.nan(-Inf)& is.infinite(-Inf)& !is.finite(-Inf)
#
2006 Oct 18
2
Digium on Dell PowerEdge 1850
Does anybody have Digium TE212P interface card on Dell PowerEdge 1850? I'm planning to install * on that configuration so I'm looking for any positive/negative experience.
Best regards,
--
Tomislav Par?ina
Lama Computers Split
Stinice 12, 21000 Split
Tel.: +385(21)270248
Mob.: +385(91)1212148
SIP: tomo@sip.lama.hr
e-mail: tparcina#lama.hr
http://www.lama.hr
2004 Oct 22
0
automatically authenticate domain logged-on users ina pache with AD/NTDOM?
Yeah, "interoperate over either NTLM or Kerberos to provide SSO", that's
exactly what I'm talking about! Only, I want to trade IIS for apache@unix.
I can still use Explorer@windows for clients.
Very interesting, though, that Mozilla has been kerberized. I knew it would
happen, but I haven't read anything about that.
Thanks for the input,
Palle
--On fredag 22 oktober
2006 Oct 27
4
IAX2 show peers - description
Hi people,
pls does anybody know what "(T)" and "(D)" letter means?
server3*CLI> iax2 show peers
Name/Username Host Mask Port Status
SERVER1 xxx.xxx.xxx.xxx (D) 255.255.255.255 9785 (T) OK
(29 ms)
SERVER2 xxx.xxx.xxx.xxx (D) 255.255.255.255 4569 OK
(95 ms)
2 iax2 peers [2 online, 0 offline, 0
1998 May 06
1
R-beta: R-0.61.3 "Color Allocation Error"
Running R under Solaris 2.5.1 I get "Color allocation error".
the offending line is
lines(x,col="green4",lty="dotted")
from the "graphics" demo
Any suggestions?
The same program runs fine under linux, BTW.
Ina
---------------------
Ina Dau
Computer Administrator - Room 101 - Pearson Building - UCL
email: i.dau at ucl.ac.uk
Phone: +44-171-4193636
snail:
2006 May 03
3
Huawei EP201S
Has anybody used Huawei EP201S IP phone? I need 9 SIP phones that cost around 100USD, and those phones are one of options.
Can anybody suggest anything else that costs around 100USD?
--
Tomislav Par?ina
Lama Computers Split
Stinice 12, 21000 Split
Tel.: +385(21)495148
SIP: tomo@pbx.lama.hr
e-mail: tparcina#lama.hr
http://www.lama.hr