search for: siter

Displaying 13 results from an estimated 13 matches for "siter".

Did you mean: site
2006 Apr 07
3
How to wait for an image to be loaded?
...nging ''src'' attrbiute of ''img'' element. How to wait for an image to be downloaded completely before trying to display it and while browser downloads this image display a spinner gif or ''please wait'' message etc.? Something like this: http://siter.com.au/dmitry/images.html. -- Posted via http://www.ruby-forum.com/.
2006 Apr 06
4
ajax question, not so basic I guess...
Hey Is there a ajax method that triggers when the page is fully loaded? I want to be able to specify which div to update, something like this: <%= on_page_loaded( :update => "generatedimage", :url => { :action => :generateimage }) %> What I''m trying to do is load a page with a animated gif image saying "custom
2011 Jan 03
1
personal details appearing on google such after I pose a question in the R-help forum
Hi all, Out of curiosity I googled my name yesterday to just see what new information  in the web there is associated with me. To  my surprise, I found in addition to the  questions i have posted on this forum, my email address and my signature details (name, address, telephone number) seem to appear everytime i pose a question. How can i conceal my personal details from the access of anyone when
2010 Jul 22
1
please help me on this warning message
hi, When I try to use the function coordProj {mclust} " coordProj(diabetes[,-1],dimens=c(2,3),what="uncertainy",uncertainty=diabetesModel$uncertainty,parameters=diabetesModel$parameters) " to identify uncertainty, it errors and send this warning message: " Warning message: In coordProj(diabetes[, -1], dimens = c(2, 3), what = "uncertainy", : what
2010 Oct 29
1
SARIMA simulation using time series history
Hi, I'm currently working with a SARIMA model from which I want to make simulations. As I understand, neither sarima.Sim nor the functions in the gsarima package use historic realizations of the time series to simulate future values. However, I want to use historic values as input and simulate future values based on the history. Anyone who know whether such a function is available
2005 Jun 06
1
Problem listing group membership from Windows
I planned using ifmember.exe from Windows 2000 resource kit to map the right drive-mappings to the right shares with logon-scripts. Unfortunately it seems as ifmember simply doesnt report the right groups for the users. Even tho "id user1" shows the right groups; "uid=2082(user1) gid=1002(Group1)roups=1002(Group1),545(Users),1000(Group0)", User is a member of group
2007 Jul 12
0
15 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt INSTALL libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.h libswfdec/swfdec_as_object.h
...debug_stack.c @@ -71,15 +71,11 @@ swfdec_debug_stack_set_model (SwfdecDebu context= SWFDEC_AS_CONTEXT (debug->manager->player); frame = context->frame; if (frame) { - SwfdecAsValue *val = context->cur; - SwfdecAsStack *stack = context->stack; + SwfdecAsStackIterator siter; + SwfdecAsValue *val; guint i = 0; - while (val != frame->stack_begin) { - if (val == &stack->elements[0]) { - stack = stack->next; - val = &stack->elements[stack->used_elements]; - } - val--; + for (val = swfdec_as_stack_iterator_init (&site...
2011 Jan 28
2
(no subject)
Hello, I have a data set with each column containing data like this: row column1 1 1.2 2 NA 3 NA 4 3 5 5 6 NA 7 1.5 8 NA 9 NA 10 NA 11 3 12 NA 13 3 14 NA 15 NA 16 NA 17 NA 18 3 19 1.2 20 NA >From this I would like to extract the sequence containing at least three rows of 3 in a row (exlcuding NAs). I would also like to have the row numbers showing the place of the last
2011 Jan 27
4
Writing program for these
Hello I am trying to solve these problems and I am not allowed to use loops or ifs. 1st Question My first question is that I have generated 100 random numbers from the uniform distribution then A)add only the negative integers. B)add elements until the first appearance of a negative element. I know how to choose the negative elements for A but how to find integers? And I dont know what to do
2017 Aug 16
1
dotlock causing crashes
...ge.c:727 sbox = 0xc2e268 isrun = 0xc27580 cause = 0x7fa26221c447 "COPY" ret = <optimized out> isuser = <optimized out> mevent = <optimized out> headers_ctx = 0xbb53a0 st = 0x1 isrun_src = 0x0 siter = {array = 0xbb57f8, prev_n = 8, prev_idx = 0} script_name = 0x0 can_discard = true src_mail = 0x0 wanted_headers = {0x7fa26221c567 "From", 0x7fa26221c56c "To", 0x7fa26221c136 "Message-ID", 0x7fa26221c56f "Subject", 0x7fa26221c...
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things (and in partiter part), fixes few minor issues and adds a few new features. Details are in the following commits, below is the summary and pull details at the end. Shao - any chance to peek over them ? Most of those are relatively simple changes and well tested, though of course something might have slipped my attention.
2010 Aug 04
4
KS Test question (2)
Hi R Users, I have two vectors, x and y, of equal length representing two types of data from two studies. I would like to test if they are similar enough to use them interchangeably. No assumptions about distributions can be made (initial tests clearly show that they are not normal). Here some result: Two-sample Kolmogorov-Smirnov test data: x and y D = 0.1091, p-value < 2.2e-16 alternative
2010 Oct 31
1
R-help Digest, Vol 92, Issue 31
...Thank you for your suggestion, Juan. However, I have tried to specify the innovations and this doesn't seem to solve the problem. Are there really no opportunities to simulate from a (S)ARIMA model using past observations in R, besides to make the whole script from the ground? Knut Siterer Juan Pablo Calle <mi.rhelp.es@gmail.com>: > Hi Knut, > > The arima.sim function, in the stats package, has an argument > innov="YourSerie" for the innovations, you should try something like: > > arima.sim(list(order=c(p,d,q), ar=c(ar coefficients), ma=c(ma &...