Displaying 7 results from an estimated 7 matches similar to: "About infinite value"
2018 Jan 19
5
API de AEMET con R?
Desde el terminal de Ubuntu, he conseguido descargar los datos usando esto:
DESCARGAR LISTA DE ESTACIONES
wget --method GET --header 'cache-control: no-cache' --no-check-certificate
--output-document -
https://opendata.aemet.es/opendata/api/valores/climatologicos/inventarioestaciones/todasestaciones/?api_key=*vuestra
api key*
DESCARGAR DATOS HISTÓRICOS
Diciembre 2017, ALICANTE
wget
2019 Nov 28
4
Coeficientes GLM binomial
Estimad en s errer en s
He hecho este modelo glm
m1.pile<-glm(ger~tem+pot+time+I(tem^2)+I(tem^2):pot
,family="binomial"
,data=long.PILE
)
Que nos da la probabilidad de germinación de una semilla en función de tem
(Temperatura), pot (Humedad del suelo) y time (Tiempo que la semilla pasa
en esas condiciones).
Ahora quiero, para diferentes tem, pot
2007 Jul 23
1
change text labels on a dendrogram
Hi all:
I already made a dendrogram, I want to change the labels; In my data set
there is one column with text that I want to set as the labels, any one can
tellme how can I do it?
Thanks,
Ana Marcela
[[alternative HTML version deleted]]
2019 Dec 05
3
Coeficientes GLM binomial
Un ejemplo con un modelo más simple:
He especificado este modelo:
>formula(m2.pile)
ger ~ tem + pot + time
Si hago predict me da:
>predict(m2.pile,newdata=data.frame(tem=25,pot=0,time=3),type="response")
0.08243262
Extraigo los coeficientes:
> coef(m2.pile)
(Intercept) tem pot time
-1.89521331 -0.02303313 4.74499714 0.02043222
Ahora calculo la
2020 Oct 20
1
Dibujar un gráfico con 4 terms - ggeffects + plot
Hola eRRer en s,
He creado un modelo mixto (adjunto) con lme4
He dibujado la predicción usando:
df <- ggpredict(m.glob.pre.anu
, terms = c("pre", "area_m2", "sum.vs.win")
)
plot(df)
Luego he arreglado el gráfico usando:
df <- ggpredict(m.glob.pre.anu
, terms = c("pre", "area_m2",
2015 Jul 29
0
[LLVMdev] ARM unwinding bug
On 29 July 2015 at 16:53, Mason Wheeler <masonwheeler at yahoo.com> wrote:
> A couple weeks ago, Ben Pye, a developer working on the ARM32 stuff, found
> and reported a bug related to incorrect generation of stack unwinding info.
> ( https://llvm.org/bugs/show_bug.cgi?id=24146 ) Apparently it only occurs
> under a highly specific set of circumstances, which might look like a
2015 Jul 29
2
[LLVMdev] ARM unwinding bug
Hi all,
I'm working on the CoreCLR project, coordinating a community effort to produce an Android port of Microsoft's open-source version of the CLR. A major part of that is getting everything to run on the ARM32 architecture, which is by far the most common CPU for Android devices.
A couple weeks ago, Ben Pye, a developer working on the ARM32 stuff, found and reported a bug related to