search for: iteract

Displaying 16 results from an estimated 16 matches for "iteract".

Did you mean: interact
2012 Feb 29
2
Using a FOR LOOP to name objects
Hello, I am trying to use a for loop to name objects in each iteraction. As in the following example (which doesn't work quite well) my_list<-c("A","B","C","D","E","F") for(i in c(1:length(my_list))){ url<- "http://finance.yahoo.com" doc = htmlTreeParse(url, useInternalNodes = T)...
2006 Feb 27
21
what hardware shuld I but to manage 100k of connections per day?
I''m doing a fotolog for a company. It''s expected to manage about 100k of connections per day and about 1500 concurrents connections. What hardware should I buy to manage those numbers of connections? I''m planning to use slackware + lighttpd + fastcgi, but perhaps we will have to reuse some scripts in php, in that case I would use slackware + apache + mod_php + fastcgi
2002 May 30
1
To create a menu
Dear all, I would like to create a graphics menu. There is a function "menu" which presents the user with a menu of choices labelled from 1 to the number of choices(in the package base). But it's an "iteractive" function. Actually, i work with GRASS and R (under linux) and i use the command R --vanilla<"name" to execute my routine. That why, i think that it is impossible to use this function "menu". Do you know an other function to create a menu? Thanks in...
2007 Jul 27
4
Prototype to use QEMU for PV guest framebuffer
...y if we did a little re-factoring. I wanted to keep it simple for now & not change any of the upstream QEMU code. This attached patch is against the current upstream QEMU CVS code, not Xen''s ioemu, since I wanted to work against pristine QEMU codebase & avoid any potential wierd iteractions with HVM stuff added to ioemu. The diff is $ diffstat ~/xen-qemu-pvfb-machine.patch Makefile.target | 3 b/hw/xen.c | 113 +++++++ b/hw/xenfb.c | 822 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ b/hw/xenfb.h | 35 ++ vl.c | 1 vl.h |...
2005 Aug 26
3
.Call and Segmentation Fault
...nction uses others C and Fortran functions and it works fine when I call it from a main() in a C program. But when I call it from R with .Call("name_of_the_c_function"), R gives me some weird output. This weird output is a worng answer to my optimization problem (sometimes after thousands iteractions, what does not occur when called from C) or a segmentation fault error. The kind of output depends on the machine I am using. At home I got a segmentation faul, in university I got those wrong values. I tried a memcheck in C and Fortran binaries, but everything seems allright except by 2 missin...
2008 May 13
0
xirr...
...Reference 2: How to calculate IRR manually - http://www.s-anand.net/Calculating_IRR_manually.html #~ #~ Step 1: enter zeroes (0) against dates that do not have any cash outflow or inflows. #~ Step 1bis: calculate IRR for these cash flow values using normal IRR function. #~ Step 1tris: or using an iteractive approach as bisection method to find the NPV zeroes. #~ Step 2: multiply this value of IRR by 365 to get annual IRR (since, these are daily cash flows). #~ Step 3: refine using the formula =( 1+ R / 365) ^ 365 - 1), where R is the the value obtained in Step2. #~ Regards, Alberto Santini -- Vie...
2017 Dec 15
1
cannot destroy connection (?) created by readLines in a tryCatch
...directory It seems that open() also throws an error, so why give the warning? Because it is more specific? Would it make sense to turn that warning into an error? Gabor On Thu, Dec 14, 2017 at 11:46 PM, <luke-tierney at uiowa.edu> wrote: > This has nothing to do with on.exit. It is an iteraction between where > the warning is signaled in 'file' and your _exiting_ warning handler. > This combination has the same issue, > > tryCatch(file(tempfile(), "r"), warning = identity) > showConnections(all = TRUE) > > as does > > options(warn=2) > fil...
2007 Oct 05
0
use of specaccum in routine procedure
...dimension equal to 16 sectors the obtained resuld should coincide with the rarefaction curve performed on plots presence-absence data) Now, my main questions are: considering the huge amount of randomizations and calculations, is a normal pc able to run this/these routine/s? Second, the number of iteraction for each dimension should increase as a function of the number of sectors aggregated. This mean in my opinion that the number of randomization for calculation of an approximative mean of species richness for dimension_15 should be equal to....infinite??? Does someone know if some compiled functi...
2010 Jan 04
2
Piecewise regression in lmer
Dear all, I'm attempting to use a piecewise regression to model the trajectory of reproductive traits with age in a longitudinal data set using a mixed model framework. The aim is to find three slopes and two points- the slope from low performance in early age to a point of high performance in middle age, the slope (may be 0) of the plateau from the start of high performance to the
2017 Dec 14
0
cannot destroy connection (?) created by readLines in a tryCatch
This has nothing to do with on.exit. It is an iteraction between where the warning is signaled in 'file' and your _exiting_ warning handler. This combination has the same issue, tryCatch(file(tempfile(), "r"), warning = identity) showConnections(all = TRUE) as does options(warn=2) file(tempfile(), "r") showConnections(al...
2020 May 08
3
What's a Reasonable Inbox Size?
> It depends on what you consider reasonable. > > The processing time of file operation that iterates through a mailbox > will generally go up proportinately with size.? If you do a text search > without some indexing system like Solr, it will take a very long time. > > If the mailbox is just some archive that you pile up and forget about it > except for once in a blue moon
2015 Aug 01
5
Call Center
Hi All Has anyone used Asterisk for a Call Center operation? What I mean is: given a list of phone numbers, can Asterisk dial each number, play a message and accept some DTMF? I ask because I am an employee of a non-profit company based in San Diego, CA. I already evaluated Voicent and Voxeo. The former has expensive licensing terms and the latter is not best suited for a call center. I would
2017 Dec 14
4
cannot destroy connection (?) created by readLines in a tryCatch
On Thu, Dec 14, 2017 at 7:56 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > Gabor, > > You can grab the connection and destroy it via getConnection and then a > standard close call. Yeah, that's often a possible workaround, but since this connection was opened by readLines() internally, I don't necessarily know which one it is. E.g. I might open multiple
2012 Feb 23
2
help with winbugs glm
Hi, I am running a model with count data and one categorical predictor (simple model for me to understand it fully), I did in R a glm like this: glm(Recruitment~Depth, family=poisson). I get the coefficientes and confidence intervals and all is ok. But then I want to do the same model with Bayesian stats, here is my code: model { for (i in 1:232) { Recruitment[i]~dpois(lambda[i])
2005 Jan 13
10
Program logic behind Ruby On Rails
Hi, I''m a newbie in both Ruby and Ruby on Rails. I finished the Ruby on Rail Tutorial on Todo list and it was great. But, now I''m trying to understand the logic behind it, that is something that is not obvious on how each one of them ties together. Is there a flowchart that shows how the inner working of Ruby on Rails? In another words, let''s suppose we consider the
2003 Dec 01
0
No subject
...way, but it has no shadow passwords) Is the current server an other machine or the 2.2.0a? Hm, it should work the way you describe. Are you sure your are running the self compailed version of samba with your smb.conf? Have you removed the samba that ships with the distribution? May be some thing iteracts here. Try what happens if you remove the smbpasswd file. > > what must I do to obtain this behaviour? Is there anything in the logs? Christian _________________________________________________________________ In a world without walls and fences, who needs windows and gates? Return-Pat...