Displaying 3 results from an estimated 3 matches for "mydivid".
Did you mean:
mydivide
2017 Jun 12
2
Bucle for que se salte los errores
He encontrado la respuesta. EL ejemplo que puse era trivial, ya que es obvio que if(i ==0) entonces next, pero me referia a sin saber si va a ser error el modelo o no.
Para esto he encontrado la solución
for(i in -3:3){
tryCatch({
z<-1/i
> z<-z*z
> modelo<-lm(z~1)
}, error=function(e){print("es un error"})
}
Gracias de todas maneras!!!!!
Jesús
2005 Dec 23
3
Intergrating delicious?
Whats the best way of intergrating del.icio.us into a RoR app?
--
Posted via http://www.ruby-forum.com/.
2008 Jan 30
3
Ajax.Request - nothing in responseText, I need it!!
...new Ajax.Request(url, {
method: ''POST'',
asynchronus: ''true'',
contentType: ''text/html'',
onComplete: parseData});
}
function parseData(originalRequest)
{
myResponse = originalRequest.responseText;
myDivID.innerHTML += myResponse;
}
-------------------------------------------------
when I include alerts in parseData to see if there is any content to
responseText, it always comes back empty.
What am I doing wrong here? Like I said, the php script is working
fine, but there seems to be some disconne...