Displaying 20 results from an estimated 6000 matches similar to: "Replacing elements of a list over a certain threshold"
2012 Aug 21
2
Sequence detection longer than a certain value
Hello,
I have 2 variable: one is an "id" sequence from 1:1000 and the other is
variable with real values "VI" from -15.0 to 20.0 and I want to detect id
values that have indicator values less than a certain threshold, for
example (x=1) BUT that are in sequence equal or longer than 5.
For instance, in the following column I want to recognize the sequence from
"id" 4
2005 Jan 22
4
rsync failing with return code 13
Hi there,
I'm running rsync on an nslu2 (using nslu2-linux) and it keeps failing
with return code 13. The man page doesn't give a good description of
what this means ("Errors with program diagnostics") so could someone
give me a clue. as to what diagnostics rsync is running and reasons why
they might be failing? The only magic to note is the machine only has
32MB of ram so low
2011 Nov 08
1
save at relative directory
Dear all,
I have a variable called thres and before I run a script I set it to a value
like
thres<- -10
at the end of the execution I am issuing a save(variablename,file='Results')
which will end up with a file saved at the current directory with the name Results
I would like though to use thres value and do the followingg
save at the directory called 10 so to get ./10/Results, (yes I
2007 Aug 14
8
sh DTrace provider available
As noted on my blog and at
http://www.opensolaris.org/os/community/dtrace/shells/ I''ve made
available a DTrace provider for the Bourne shell. Before anyone starts
yelling at me for not starting with another shell, read the blog I made
explaining why we started with shell (link on the community page
referenced above).
For /bin/sh, I''ve put up something akin to a chapter in
2011 May 05
2
[LLVMdev] Loop transformations using LLVM
Hi
I am trying to write up a transformation for the following code where
instead of incrementing the loop variable by 1, I increment it by 2 ie.
for (i=0; i < THRES; *i++*) {
//do something
}
gets transformed to
for (i=0; i < THRES; *i+=2*) {
//do something
}
I am thinking of transforming the llvm bit-code in the following way.
Iterate over the function for the original code till I
2006 May 12
10
why dtrace is not quiet?
i''m running the following script:
#pragma D option quiet
profile:::tick-1sec
/ ++x >= 15 /
{
exit(0);
}
io:::start {
@io_size[execname] = sum(args[0]->b_bcount);
}
on exit, the script prints out the value of @io_size, why?
there''s no printa(), and i also specified "D option quiet" (i also tried -q).
this seems to happen with any kind of probe: on exit(0) all
2016 Feb 08
4
(Samba 4) Recreate AD
I’ve currently got a Samba 4 AD but want to rename it. However, as I understand things, renaming isn’t easy.
Happy to rebuild it - home lab, only a few machines affected.
However, no topic in the FAQ on how to remove an existing domain: https://wiki.samba.org/index.php/FAQ <https://wiki.samba.org/index.php/FAQ>
Demoting won’t work since it’s the last remaining server:
2016 Feb 08
1
(Samba 4) Recreate AD
Actually I am using a single-service VM, but blowing away a VM just because I want to demote/promote feels like overkill.
For step 3, since I’m running from source, does that change anything?
re: step 4 I plan to edit the existing /usr/local/samba/etc/smb.conf and krb5.conf files, but if you think this is a bad idea then I’ll rebuild them.
Thanks
Paul
> On 8 Feb 2016, at 16:43, mathias
2010 Jun 26
2
Recursive indexing failed at level 2
Dear fellow R users,
I am replacing elements of a list like so:
pulse_subset[[1:20]]=unlist(pulse[i])[1:20]
where pulse is a list of lists, and pulse [i] has >20 values.
This gives the error "Recursive Indexing failed at level 2". But,
interestingly this instruction is part of a loop which has gone through
about 200,000 iterations before giving this error.
Actual code:
>
2006 Dec 04
2
domUs dropping off the network (Xen 3.0.2)
Hello,
We''ve recently started seeing several domUs on multiple machines losing
all network connectivity. At least one of these machines (since they are
customer machines I can''t verify it for all of them) give the error:
$ sudo ifup eth0
eth0: full queue wasn''t stopped!
About the only Google hit for this message is:
2011 Jan 10
4
Meaning of pterms in survreg object?
I am trying to model survival data with a Weibull distribution
using survreg. Units are clustered two apiece, sometimes receiving
the same treatment and sometimes opposing treatment.
2010 Oct 25
2
Text wrapping in R
I am about to give an introduction to R to some clinical data managers
used to SAS. There is already a lot of material in printed form and
on the web that paves the way. What I haven't found so far are text
wrapping capabilities in setting tables in raw text as in SAS PROC
REPORT.
At the moment i would direct them at producing HTML output from R
and pipe the result through lynx. Coming from
2004 Dec 02
8
Ipsec and Proxy arp
I noticed the long standing Ipsec FSwan problem was fixed.
But do you still have to make sure Ipec is not running when shorewall starts
Reason I ask Is I could not get my Dmz working with Ipsec in the equation.
Thanks
Mike
2011 May 05
0
[LLVMdev] Loop transformations using LLVM
Malveeka,
You can use the LoopInfo analysis to find the induction variable.
http://llvm.org/docs/doxygen/html/classllvm_1_1Loop.html#a72bbf45d2e00971f56bf8cfe4e1df01c
Cheers,
Nadav
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Malveeka Tewari
Sent: Thursday, May 05, 2011 14:51
To: llvmdev at cs.uiuc.edu
Subject: [LLVMdev] Loop transformations
2008 Jul 13
3
initialize a factor vector
What is the least surprising way of initializing a factor with
predefined levels and with length 0?
as.factor(c("eins", "zwei", "drei"))[FALSE]
does the job but looks a bit weird.
--
Johannes H?sing There is something fascinating about science.
One gets such wholesale returns of conjecture
mailto:johannes at
2013 Nov 28
2
[LLVMdev] Disabling certain optimizations at -O1?
On Thu, Nov 28, 2013 at 1:11 PM, Renato Golin <renato.golin at linaro.org>wrote:
> On 28 November 2013 00:00, Robinson, Paul
> <Paul_Robinson at playstation.sony.com> wrote:
> > In my experience, to a first approximation, anything
> > that changes the CFG or that reorders generated code beyond source
> > statement boundaries is likely to make things more
2011 May 07
1
[LLVMdev] Loop transformations using LLVM
On May 5, 2011, at 5:11 AM, Rotem, Nadav wrote:
> Malveeka,
>
> You can use the LoopInfo analysis to find the induction variable.
>
> http://llvm.org/docs/doxygen/html/classllvm_1_1Loop.html#a72bbf45d2e00971f56bf8cfe4e1df01c
>
> Cheers,
> Nadav
getCanonicalInductionVariable is a good example of finding IVs without iterating over instructions. But you may need to
2004 Jun 24
2
More problems with lattice and postscript
Dear List members,
I am trying to produce some trellis graphics and to save them in a
postscript file but I only get blank files. R behaviour is certainly
strange because I use a loop to generate the graphics (see code below).
When I change the loop variable myself the postscript graphics are OK.
I am using R 1.9.1 (2004-06-21) on Debian GNU/Linux which I try to keep
updated on a daily basis. I
2003 Aug 27
4
Newbie graphing questions
Hi everyone. R is new to me and I'm very impressed with its
capabilities but still cannot figure out how to do some basic things.
There seems to be no lack of documentation but finding what I need has
proven difficult. Perhaps you can help.
Here's what I'm after:
1. How do I create a new plot without erasing the prior one i.e., have
a new window pop up with the new graph?
2009 Apr 30
4
Disabling users whilst still allowing logins with a 'master password'
Hi,
I'm having trouble coming up with an authentication configuration that
does what we want with dovecot, and thought it would be worth passing
it by the list in case anyone can spot an easy fix, or confirm my
suspicions that code changes are required.
You should probably be aware that this is to support a migration away
from Dovecot to a certain Microsoft-provided mail platform, so if
this