Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

24 results for “from:Luisfo”

[R-es] Anuncio: paquete outliers
Luisfo Llador · May 9, 2018 · r-help-es

Estimados colegas: Entiendo que este buzón es el adecuado (me disculpan si no es así) para dar a conocer el siguiente paquete de R: *MUOD (outliers)* luisfo/muod.outliers | | | luisfo/muod.outliers | El paquete, tal y como se indica, estÃ...

[R-es] Cambiar el simbolo decimal por un punto en el medio
Luisfo · Feb 24, 2016 · r-help-es

Buenas Joan, Hay una variable global llamada OutDec que tiene el separador para decimales. decSepPrev <- getOptions("OutDec") #guardas el valor actual options(OutDec="·") #punto en medio, o el valor que necesites #el código ... options(OutDec=decSepPrev) #restauras el valor...

[R-es] Gráficos estilo "hecho a mano"
Luisfo · Apr 1, 2016 · r-help-es

Buenas Hector, ese estilo de plots se llama xkcd comic style. No lo he usado nunca, pero parece que hay una librería en R http://xkcd.r-forge.r-project.org/ <http://xkcd.r-forge.r-project.org/> Espero...

using apply to a data frame
Luisfo · Apr 7, 2016 · r-help

Dear John, Try using sapply(data5NonEventEpochs, fract) HTH Best, Luisfo Chiroque PhD Student IMDEA Networks Institute http://fourier.networks.imdea.org/people/~luis_nunez/ <http://fourier.networks.imdea.org/people/~luis_nunez/> > El 7 abr 2016, a las 23:25...

[R-es] igraph edges busqueda
Luisfo · Sep 7, 2016 · r-help-es

Estimado Javier, Si no voy mal encaminado, tu primera 'query' E(datos.network)[[inc('LoQueBusco')]] busca aquellas aristas que incluyan a un vértice llamado 'LoQueBusco'. Mientas que, tu segunda query, E(datos.network)[E(datos.network)$Cosa=="'LoQueBusco'"] busca...

question about probplot in e1071 package
Luisfo · Apr 4, 2016 · r-help

Dear Thomas, Reading the probplot?s help page, it looks like it is using qqplot underneath. Thus, I think this is what you need. probplot(x, line=FALSE) #probplot(y, line=FALSE) qq.y <- qqnorm(y, plot=F) points(qq...

[R-es] problema en el manejo con fechas
Luisfo · Feb 17, 2016 · r-help-es

Buenas, El año en formato 4 cifras, tiene que ir con mayúscula: lluv[,1] <- as.Date(lluv[,1], format="%m/%d/%Y") Prueba a ver si te funciona ahora. Un saludo, Luisfo On 02/17/2016 03:27 PM...

Dissimilarity matrix and number clusters determination
Luisfo · Apr 12, 2016 · r-help

Dear Michael, Yes, AFAIK you are correctly reading the results. You can print elbow.obj$k to obtain the optimal number of clusters, and ?visually? you can check it plotting the variance vs #clusters plot(css.obj$k, css.obj...

[R-es] Anuncio: paquete outliers
Luisfo Llador · May 10, 2018 · r-help-es

Disculpad, que no se envió bien el enlace:https://github.com/luisfo/muod.outliersel paper:https://www.nature.com/articles/s41598-018-24874-2 Saludos,--Luis F Chiroque En jueves, 10 de mayo de 2018 8:50:46 CEST, Jesús...

[R-es] Asignacion de colclasses
Luisfo · Sep 27, 2016 · r-help-es

Hola César, Aunque la respuesta de Carlos está bien, date cuenta de que el error dice: scan() expected 'a real', got '13.060.496' Parece que tienes separadores de 'miles' en una columna, y R no traga con ellos...

get start and end date of ISO weeks giving a date as input
Luisfo · Sep 8, 2016 · r-help

Dear Veronica, Here there's a way of doing what you requested. library("lubridate") # your date '2010-08-21' as Date object dd <- as.Date(strptime("2010-08-21", format="%Y-%m-%d", tz="GMT")) # take the first day of...

[R-es] R igraph
Luisfo · Mar 31, 2016 · r-help-es

Estimado Javier, En mensaje de error la función se queja de que sólo funciona con grafos sin aristas multiples. Seguramente haya más de una arista entre algún par de nodos. Esto, se puede solucionar usando simplify() fastgreedy.community(simplify...

Arules Package: Rules subset with 'empty' left hand side (lhs)
Luisfo · Sep 13, 2016 · r-help

Dear Tom, I think this is the line you need arules::subset(rules, subset=lhs %pin% "") I found the solution here: http://stackoverflow.com/questions/27926131/how-to-get-items-for-both-lhs-and-rhs-for-only-specific-columns-in...

[R-es] usar un for para cambiar indice
Luisfo · Sep 7, 2016 · r-help-es

Estimado Sebatian, Si quieres tener todos los gráficos en un solo plot, me parece mejor opción matplot que sugirió Jorge. Ahora que, viendo que dices tener los datos en una lista (PPcapita es una lista) y querer usar un...

[R-es] igraph V a partir de E y subgrafos
Luisfo · Sep 6, 2016 · r-help-es

Estimado Javier, Me alegra que hayas avanzado con tu error. Te respondo a esto último. La función induced.subgraph() espera como segundo parámetro una lista de los IDs de los vértices, mientras que tú le estás pasando...

[R-es] R igraph
Luisfo · Apr 1, 2016 · r-help-es

Estimado Javier, El problema de simplify es que no sabe cómo mezclar las aristas a no ser que se lo indiques explícitamente. No sé si por defecto se quedará con la primera o la última arista. En cualquier caso...

Resample with replacement to produce many rarefaction curves with same number of samples
Luisfo · Sep 8, 2016 · r-help

Hi Nick, Yes, you are right. There's one small bug on my code. The 'if' within the for-loop is wrong. Try it now with the code below. rrarefy.custom <- function (x, sample, rep.param=F) { if (!identical(all...

Resample with replacement to produce many rarefaction curves with same number of samples
Luisfo · Sep 7, 2016 · r-help

Hi Nick, If you use the following raredata <- rarecurve(rrarefy(netdata, sample=100), label=F, col=rgb(0, 0, 1, 0.1)) should work for any sample size, e.g. sample=100. However, you will have a 'warning' if you...

[R-es] Saltar filas no numericas al importar csv
Luisfo · Sep 14, 2016 · r-help-es

Buenas Jesús, Se me ocurre lo siguiente. # importar csv con 'stringsAsFactors=F' para evitar los factors data <- read.csv("fichero.csv", header=F, stringsAsFactors = F) # seleccionar las filas sólo numéricas numericRows <- apply(!apply(apply(data,1,as.numeric),2...

[R-es] Bootstrap de días seguidos
Luisfo · Mar 31, 2016 · r-help-es

Buenas, para concatenar (rbind) los resultados de ?muestras? a un data.frame podrías hacer lo siguiente: df.muestras <- data.frame(do.call(rbind, muestras)) Un saludo, Luisfo > El 31 mar 2016, a las 18:00, Jesús Para Fernández...

Can't find what you're looking for? Try searching with Google .