similar to: question about probplot in e1071 package

Displaying 20 results from an estimated 1000 matches similar to: "question about probplot in e1071 package"

2016 Apr 04
0
question about probplot in e1071 package
Luisfo, Thank you so much! That does what I need. Best regards, Tom On Mon, Apr 4, 2016 at 10:51 AM, Luisfo Chiroque <luisfo89 at yahoo.es> wrote: > 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,
2016 Apr 01
2
R igraph
Estimado Luisfo Chiroque Hay aristas múltiples, eso es por la preparación de los datos, es que separe por componentes, no me refiero al término componente estadístico, sino a descomposición de algo en los componentes que lo construyen, algunos son comunes y otros no, cuándo son comunes hay una relación en la red. Voy a probar con simplify, cuándo lo leí yo lo descarté, lo releeré, ¿Qué opina de
2016 Apr 04
0
question about probplot in e1071 package
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.y$y, qq.y$x) I hope this is useful for you. Best Regards, Luisfo Chiroque PhD Student IMDEA Networks Institute http://fourier.networks.imdea.org/people/~luis_nunez/
2016 Sep 06
2
igraph V a partir de E y subgrafos
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 una lista de 'edges'. Prueba lo siguiente: c <- induced.subgraph(datos.network, which(V(datos.network)$name == 'Casa')) Si entendí bien todo, debería
2016 Sep 06
2
igraph edges busqueda
Estimados Tengo una duda E(datos.network)[[inc('LoQueBusco')]] + 20/6795 edges (vertex names): E(datos.network)[E(datos.network)$Cosa=="'LoQueBusco'"] + 78/6795 edges (vertex names): La primer forma es 20/? la segunda 78/? ¿Los resultados no tendrían que ser idénticos? Estos datos son pocos pero me desarman la cabeza. Desde ya muchas gracias. Javier Rubén Marcuzzi
2016 Apr 12
1
Dissimilarity matrix and number clusters determination
Hi, I already have a dissimilarity matrix and I am submitting the results to the elbow.obj method to get an optimal number of clusters. Am I reading the below output correctly that I should have 17 clusters? code: top150 <- sampleset[1:150,] {cluster1 <- daisy(top150 , metric = c("gower") , stand = TRUE , type = list(symm
2016 Apr 01
2
Gráficos estilo "hecho a mano"
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20160401/205f15ae/attachment.html>
2018 May 10
3
Anuncio: paquete outliers
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á respaldado por un paper que hemos publicado recientemente en Scientific Reports. Detecta outliers en datos multidimensionales usando 'function
2016 Apr 07
0
using apply to a data frame
??I would like to apply a function, fract, to the columns of a dataframe. I tried the following apply(data5NonEventEpochs,2,fract) but, no surprise it did not work as apply works on matrices not data frames. How can I apply a fuction to the columns of a data frame? (I can't covert data5NonEventsEpochs to a matrix as it contains character data). Thank you, John John David Sorkin M.D., Ph.D.
2011 Mar 26
1
2 questions about probplot in package e1071
The contributed package e1071 does exactly what I want except that I need to have (1) the abscissa and ordinate axes swapped, with the probability scale on the bottom and the quantiles scale on the LHS. Using the following example: library(e1071) x <- rnorm(100, mean=5) probplot(x, line=FALSE) and (2) I need to have lines connecting the plotted symbols, as you get with:
2016 Sep 03
2
igraph V a partir de E y subgrafos
Estimados Tengo un problema. Con igraph creo una red a partir de un data.frame, las dos primeras columnas son V y las restantes E. Hay un trabajo anterior, yo me pregunté ¿Qué pasaría si las cosas hablaran entre ellas?, entonces hay un cruce de información de todos contra todos y elimino los nulos y duplicados. Al ver los listados E, V tienen la información. Hasta ahí estaría todo bien (me
2016 Sep 14
3
Saltar filas no numericas al importar csv
No me vale, porque no es un problema de columnas, es de filas. Cuando importo el csv, como tiene cada columna segun la fila o numeros o texto, R convierte la columna automaticametne en factor. He probado a convertir las columnas a numeric, pero tampoco me vale, ya que transforma el texto a numeros.... ¿Alguna alternativa? estoy pensando ne poner skip y ne el skip meter las letras del
2006 May 19
0
e1071 probplot -grouping
Hello, I am currently using probplot function in the e1071 package to do cumulative probability plots . I want to be able to do multiple cumulative probability plots ( based on a grouping of data) on a single plot. Any help with this would be greatly appreciated. Thanks.
2016 Mar 31
2
R igraph
Estimados Copio un mensaje de error que da igraph, es más fácil verlo que explicarlo. > fastgreedy.community(udatos) Error in .Call("R_igraph_community_fastgreedy", graph, as.logical(merges), : At fast_community.c:553 : fast-greedy community finding works only on graphs without multiple edges, Invalid value > cluster_louvain(udatos) IGRAPH clustering multi level, groups: 7,
2007 Jul 04
2
probabilty plot
Hi all, I am a freshman of R,but I am interested in it! Those days,I am learning pages on NIST,with url http://www.itl.nist.gov/div898/handbook/eda/section3/probplot.htm, I am meeting a problem about probability plot and I don't know how to plot a data set with R. Could somebody tell me the answer,and a example is the best! I will look forward to your answer. Thank you very much.
2016 Feb 11
4
Invertir dcast
Con data.table todo puede ir muy rapido. > require(data.table) > M=matrix(c(5,NA,NA,NA,6,NA,7,NA,8),3,3) > M [,1] [,2] [,3] [1,] 5 NA 7 [2,] NA 6 NA [3,] NA NA 8 > M2=data.table(M) > M2 V1 V2 V3 1: 5 NA 7 2: NA 6 NA 3: NA NA 8 > M3=melt(M2,variable.name = "columna") > M3 columna value 1: V1 5 2: V1 NA 3: V1
2006 Jan 17
0
Perl array conversion in R to compare plots.
Hello all, I am using RSPerl package to display plots in R . I want to be able to compare some data in boxplot and in histogram and in probplot ( from e1071 package) - ( cumulative probability plot - normal) I have a nested arrray of data ... from perl like the following data[0][0] = (1,2,3,.....) data[0][1] = ( 2,1,2,2,2,2,2) - could be different lengths... etc ( could be more two sets to
2016 Mar 01
2
Juntar dos data.frames eliminando celdas con NA
Hola, Perdonar por saltarme algun paso, pero a veces no me doy cuenta que yo lo tengo muy claro porque soy el que tiene el problemay no termino de explicarlo del todo jeje. Ahora he adjuntado los pasos necesarios en excel para obtener el resultado que quiero , serian 5 pasos: Quizas en R haya otra manera mas rapida. 1) Cargar las dos bases de datos (base de datos ver y base de datos azul)2) Hacer
2008 Sep 17
0
documentation improvement request: add search (PR#12905)
# R for Windows will not send your bug report automatically. # Please copy the bug report (after finishing it) to # your favorite email program and send it to # # r-bugs at r-project.org # ###################################################### > help.search("normal probability plot") No help files found with alias or concept or title matching 'normal probability plot'
2015 Apr 08
2
Temas para word markdown
Buenas, estaba siguiendo el hilo de Informes Periódicos en R de Jesus Herranz y me surgió una duda. Actualmente estoy tratando de usar markdown para todo así cualquier cosa que haga me queda presentable para informar o presentar en algún lugar. En general estoy usando html y o pdf principalmente porque cuando trato de compilar en word la verdad que queda bastante feíto. Alguién sabe, o puede