Displaying 20 results from an estimated 1000 matches similar to: "need help in pausing a script"
2006 Jul 29
10
Out Of office
Ik ben afwezig vanaf 29/07/2006 en ik ben niet eerder terug dan
23/08/2006.
Ik ben met verlof van 31 juli tot en met 22 augustus.
Voor dringende zaken kan je mailen naar helpdesk@vlafo.be.
---------------------------------------------------------------------------------
DISCLAIMER :
De personeelsleden van het agentschap doen hun best om in e-mails
betrouwbare informatie te geven. Toch kan
2017 Aug 03
1
find similar words in text
I received this from Matt Jockers and it worked!
I missed something.
How can I now see(display) this list?
Hi Riann,
There are a couple of ways that you could do this. . . the best
approach would probably be to use *grep* instead of *which*, but let me
show you both ways.
On page 30, replace
whales.v <- which(moby.word.v == *whale*)
with
whale_words <- c(*whale", *whales",
2017 Jul 31
4
find similar words in text
I am new to R.
Busy with Text Analysis.
Need a script to find e.g
whale, whales, whale's, whaler, whalers, whaling,... in Moby Dick
Riaan
2017 Aug 03
0
find similar words in text
Please keep messages on the list so others can pitch in.
_Which_ words do you want to consider identical for the purpose of frequency count?
_What_ do you want to plot?
B.
> On Aug 3, 2017, at 4:36 PM, Riaan Van Der Walt <Riaan.VanDerWalt at nwu.ac.za> wrote:
>
> Hallo Boris,
> I've loaded the Rstem, Snowball.
> But I am clueless how to get a list eg. whal* (whale,
2006 Mar 23
2
[OT] Canada on Rails by ferry?
Hey y''all,
Are any folks planning on taking the ferry from Seattle to Vancouver
(via Victoria)? I''ve never done it before so I have no idea how much
of an adventure it is. Flights are a $100+ less to Seattle than
Vancouver so the price works out the same or a bit less. My plan is
to fly to Seattle (from Savannah, GA) on Tuesday to catch the early
ferry on Wednesday
2013 Apr 26
1
Bug#706233: Incorrect information about xm dump-core and pausing or not pausing in xm man page
Package: xen-utils-common
Version: 4.1.4-2
Severity: normal
Hi,
During some research I encountered incorrect information in the man page
of xm, about the dump-core functionality:
The man page says: "Defaults to dumping the core without pausing the
domain if no I<OPTIONS> are specified."
When taking a look at the source code of this process, the default
behaviour is to actually
2000 Jun 22
1
'pausing' in R
I have this 'odd' problem; I need to let R pause, for a given time, before
starting next iteration in a loop. I'm using the following to do this
task, but feel a little bit guilty because I'm using as much CPU time as I
can get while pausing:
while(keepGoing) {
t.end <- proc.time()[3] + 5 ## the time this loop should end at
[block of R commands]
while(proc.time()[3]
2012 Feb 29
2
Guests pausing suddenly
We have a CentOS 6.2 server with KVM. That server hosts 2 virtual
machines, both with Centos 6.2, too.
Regularly, one or both of the virtual machines pass to state "pause"
without apparent reason.
On resume, I do get have messages, like the following in /var/log/messages.
Feb 28 21:50:45 achernar fcoemon: Failed to connect to lldpad
Feb 29 08:23:56 achernar kernel: sd 0:0:0:0: [sda]
2004 Dec 17
3
Paris Meeting Date/Time/Location
The Paris Asterisk meeting will be held Monday, December 20, 2004 at 1
p.m. at "Les Vendanges"--a wonderful restaurant in the 14th (tel
01.45.39.59.98). However, we have to let them know exactly how many
people will attend, so PLEASE RSVP as soon as possible.
The address is 40, rue Friant, and the metro station is Porte d'Orleans,
the end of line 4. Take Sortie Boulevard Brune,
2011 Sep 11
2
No MySQL password in ps aux!
I just noticed that some CentOS 4 or 5 machine that I don't admin but
have root access to hides MySQL passwords from ps:
Console 1:
$ mysql -u root -pSECRET
mysql >
Console2:
# ps aux
root 32165 0.0 0.1 109408 2204 pts/1 Ss+ 11:19 0:00 mysql
-u root -px xxxxxxxxxxxxxxxxxx
That is really nice, is it a MySQL feature or a CentOS feature? I have
some other servers that I _do_
2007 May 11
1
Sieve plugin
The Sieve plugin page of Wiki documentation
(http://wiki.dovecot.org/LDA/Sieve?highlight=%28filter%29) says:
"It's also not a good idea to build the plugin against self-compiled
Dovecot sources, but then actually use a prebuilt binary package of
Dovecot."
Why isn't a good idea?
Ciao,
luigi
--
/
+--[Luigi Rosa]--
\
Every time you've heard someone say they saw a
2004 Apr 22
1
Re: pausing a program
R:
I have a program that runs a For loop for days and I need to (if possible)
pause the program. Any ideas on how to do that? If I use stop, how
certain can I be that all the statements executed in the previous
iteration of the for loop?
Thanks,
Jason Higbee
Research Associate
Federal Reserve Bank of St. Louis
E: jason.l.higbee@stls.frb.org
[[alternative HTML version deleted]]
2009 Jan 27
0
Pausing processing into an interactive session
Hi all,
As a possibly silly request, is it possible to interactively pause a
R-calculation and do a browser(), say, without browser or other debug
handlers being explicitly included in the code?
Imagine the following situation:
You write up a big calculation for R to calculate. We are talking
hours here, or worse. A few hours into the calculation, you decide
that you want to check on how
2009 Oct 19
2
Pausing R
Hello,
I?m currently running a script that takes several days to complete, and
have therefore chosen to start two instances of R, each doing half the
work (since I have a two-processor machine). The problem is that this
renders my computer worthless to do other work on. So - is it possible
to pause one of the running R instances to do other things for a while,
and then starting it again
2010 May 19
1
Pausing calculations for a fixed amount of time
Is there any way to pause R for a gvien time period, i.e. without the
need for user intervention? I've got a loop that I want to have work
as hard as it can as long as there is data coming in, but when there
is no new data, I would like it to pause before checking again.
Something like in the following construction:
Set up environment: load libraries, establish database connections, etc.
2000 Jun 22
1
Summary: 'pausing' in R (fwd)
The question was:
> I have this 'odd' problem; I need to let R pause, for a given time, before
> starting next iteration in a loop. I'm using the following to do this
> task, but feel a little bit guilty because I'm using as much CPU time as I
> can get while pausing:
>
> while(keepGoing) {
> t.end <- proc.time()[3] + 5 ## the time this loop should end
2005 Mar 03
3
Audio pausing over IAX trunk
I have looked through the archives, and can only find old references to
this problem that appear to be no longer relevant, so I thought I'd ask
again.
I am having a problem with periodic breaks in audio over an IAX trunk.
The interruption only happens in one direction, and (I think) only with
clients built on the open source libiax.
Codec is irrelevant, and jitterbuffer on/off seems to
2006 Jan 16
4
Standardized beta-coefficients in regression
Hello list,
I am used to give a lot of attention to the standardized regression
coefficients, which in SPSS are listed automatically.
Is there alternative to running the last two lines in the following example to
get all the information?
ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
summary( lm(ctl ~ trt) )
2008 Aug 30
1
Saving 3d objects vs. pausing in non-interactive (scripted) mode
I am using the RGL library in scripted (non-interactive) mode, but wish to
give the data analyst an opportunity to exam the 3D plots. The "data
analysts" understand the data, but not R. My intent is to provide simple
Windows (XP) batch files that call R and automatically pass scripts to it,
and thus permit the analyst to easily access graphics without having to cut
and paste commands
2011 Nov 03
5
Wine "pausing" applications ?!
Hello,
first of all, thanks for that great program! It made me change from Windows to Linux on
my main pc :)
But since several days I experience a strange behave: The emulated application (all!) pause
for some seconds, and then go on like nothing was wrong. This pausing happens occasionally,
without any acting by me.
I run mIRC, Steam and Diablo II at the same time mostly, and tried to