Displaying 4 results from an estimated 4 matches for "velezjo".
Did you mean:
velez
2009 Aug 08
1
interesting statistics article in NYT
[This email is either empty or too large to be displayed at this time]
2008 Mar 06
2
How to hold a value(Mean sq) with a string
Hi all:
Can someone advice me on how to hold the residuals
Mean sq value on a string
so it can be used in other calculations.
I was trying something like this:
Msquare<-dfr$Mean sq but fails..Thanks
dfr <- read.table(textConnection("percentQ
Efficiency
1.565 0.0125
1.94 0.0213
0.876 0.003736
1.027 0.006
1.536 0.0148
1.536 0.0162
2.607 0.02
1.456 0.0157
2.16 0.0103
2009 May 21
4
"help"
Hola,
alguien me puede decir cómo descargar la librería
"kohonen", pues lo he intentado con download.packages y no hay forma. No sé
si es porque pongo mal el directorio de destino o porque esa librería esta
dentro de otra y no la localizo. Ya he usado en otras ocasiones el comando
download.packages y no me había dado problemas
gracias
[[alternative HTML version deleted]]
2014 Dec 09
3
Optimizar paste0()?
Hola,
Otra forma, quizás algo más rápida, especialmente para unos conjuntos tan
grandes, que la de sqldf es "data.table":
library(data.table)
x <- 1:3
y <- 4:6
d <- data.table(x, y)
d[,z := paste(x,"-",y,sep="")]
> d
x y z
1: 1 4 1-4
2: 2 5 2-5
3: 3 6 3-6
Y bueno, "dplyr" también es otra opción muy rápida...
También, y recuerdo que hace