search for: absolutament

Displaying 20 results from an estimated 27 matches for "absolutament".

Did you mean: absolutamente
2014 Mar 19
3
Leyenda gráficos
Hola, ¿hay alguna forma de colocar la leyenda de un gráfico sin que se superponga con las barras de mi gráfico? Os dejo mi ejemplo para que me entendáis: ## dado_1<-sample(1:6,1200,replace=T)dado_2<-sample(1:6,1200,replace=T)dado_3<-sample(1:6,1200,replace=T) dados<-matrix(c(table(dado_1),table(dado_2),table(dado_3)),6) barplot(t(dados),beside=TRUE,ylab="Frecuencias
2014 Mar 12
2
Frecuencia absoluta acumulada por individuo y por
Por si tienes especial interés en utilizar sqldf: todos <- sqldf( "select distinct a.ID,b.YEAR from dt a , dt b;") suma <- sqldf( "select ID,YEAR,sum(CANTIDAD) as CANTIDAD from dt group by ID,YEAR;") todos <- sqldf( "select a.ID,a.YEAR, CANTIDAD from todos a left join suma b on a.ID = b.ID and a.YEAR = b.YEAR group by a.ID,a.YEAR;") todos$CANTIDAD =
2005 Sep 26
3
dates are shown as X15.Feb.03
Why is R recognizing dates like this? Chris Buddenhagen, Botany Department, Charles Darwin Research Station, Santa Cruz,Galapagos. Mail: Charles Darwin Foundation, Casilla 17-01-3891 Avenida 6 de Diciembre N36-109 y Pasaje California Quito, ECUADOR ______________________________________________________________________ EL CONTENIDO DE ESTE MENSAJE ES DE ABSOLUTA RESPONSABILIDAD DEL
2014 Mar 12
3
Frecuencia absoluta acumulada por individuo y por año
Llego tarde al hilo, pero creo que se llega rápidamente al resultado con la complicidad del paquete "reshape2". Si DT es el data.table que escojo Francisco como ejemplo: > DT ID YEAR CANTIDAD 1: 100 2005 1 2: 100 2005 2 3: 100 2007 1 4: 100 2007 1 5: 100 2007 1 6: 120 2006 1 7: 120 2006 5 8: 120 2006 1 9: 120 2007 3
2014 Mar 10
4
Frecuencia absoluta acumulada por individuo y por año
Hola, Hola a todos, Os escribo porque no consigo finalizar el script necesario para realizar lo que a continuación planteo. Partiendo de un data frame (2 millones de casos), tengo: > datos2 ID FECHA YEAR CANTIDAD 1 100 2005-08-02 2005 1 2 100 2005-10-19 2005 2 3 100 2007-02-09 2007 1 4 100 2007-10-25 2007 1 5 100 2007-10-29 2007 1 6 120 2006-05-11
2005 Sep 07
7
Plot of multiple data sets
Hello ! There is something quite simple I want to do with R but I found nowhere in the help how to do it. I just want to plot data which are in a matrix, every column being a data set and having the same x-axis (just an index). So for example if I have a 50 x 6 matrix I want 6 set of points on the same plot. I tried plot,new() plot(MATRIX[,1]) plot(MATRIX[,2]) ... but it replaces the previous
2014 Mar 10
3
Frecuencia absoluta acumulada por individuo y por año
Hola, Vaya, en el código que he enviado, cusum no se incrementaba.. Y has indicado que se introduce un año más, con el mismo ID que el anterior y con la misma cantidad acumulada. Pero si el siguiente año es del mismo ID, acumula el valor de la cantidad que hemos introducido en esa fila... Con el siguiente código se resuelve este error y además ya está preparado para contemplar cualquier tipo de
2010 Nov 05
1
Una guía de estilo para programar en R...
Hola, He seguido con interés el mensaje de Carlos sobre la guía de estilo para programar en R aparecida en Google y las reacciones que ha generado. En líneas generales creo que la guía Google es bastante floja, estoy de acuerdo con la mayoría de comentarios iniciales de Carlos y en particular con el hecho de que no trata en absoluto (ni lógicamente promueve) la creación de packages. Otro
2017 Jun 18
2
Problema con Histograma con porcentajes usando ggplot
#Simple table con frecuencias absolutas y crear relativas count =table(ess$stflife) percent = 100* (count)/sum(count) Carlos he creado a esto a nivel general en vez de usar prop.table. Según lo que dices o entiendo, debo de usar la función ddply para hacerlo a nivel de todos los paises, y entiendo que ddply (, c(""), debo de indicar los paises? Saludos 2017-06-18 17:37 GMT-05:00
2015 Nov 08
2
desviacion estandard
Hola, ¿qué tal? Lo que te pasa no es tan raro: set.seed(1234) muestra <- abs(rnorm(100)) sd(muestra) #[1] 0.5811866 muestra.ceros <- c(muestra, rep(0, 100000)) sd(muestra.ceros) #[1] 0.03196273 En una muestra de números positivos, añadir un cero (sobre todo si está lejos de la media) sube la varianza. Si añado otro, posiblemente también. Pero cuando añado muchísimos ceros, la varianza
2005 Sep 12
0
Multiple comparisons like a Chi2 or Fisher's exact test
Dear all I have an experiment where plots either have or have not regrown (in 40 plots) after receiving 12 different herbicide treatments and a control (no treatment). The data are significant with a Chi2, but to later distinguish if the differences are significant between each of the 12 treatments apart I need to do multiple Chi2 s between each. Is there a way to run those multiple Chi2 or
2005 Sep 13
0
multiple comparisons for proportions
Dear all I am still fishing for help on this theme. In Zar 1999 page 563-565 he describes a "Tukey-type multiple comparison" for testing among proportions. It involves comparisons of ranked proportions transformed to degrees. In the following pages there are a couple of similar comparisons. I cannot find an example of this in R. Is there such a thing? Cheers Chris
2005 Sep 16
1
tickmarks on the inside on y axis and on the outside on the x axis
Hi I got both axis doing one or the other, but cannot make one do ticks on the inside while the other does it on the outside. Chris Chris Buddenhagen, Botany Department, Charles Darwin Research Station, Santa Cruz,Galapagos. Mail: Charles Darwin Foundation, Casilla 17-01-3891 Avenida 6 de Diciembre N36-109 y Pasaje California Quito, ECUADOR
2005 Sep 30
0
nonparametric 2way repeated-measures anova
Dear R Christoph Lehmann asked about this recently- as seen at http://finzi.psych.upenn.edu/R/Rhelp02a/archive/53191.html but the reply was not detailed. Did Christoph get a solution to this? Can anyone point me toward how to do repeated measures comparison using the the friedman test or other non-parametric test? I am trying to do something similar. Any example code would be useful.
2012 Oct 17
0
Superficie de respuesta con rsm y nnet
Hola compañeros de la lista. Los molesto con la siguiente duda. En un diseño central compuesto (CCD) con dos factores (V1 y V2) y una variable de respuesta (R), utilizando valores codificados (-1.4142, -1, 0, 1, 1.4182), al aplicar la orden: rsm.segundo.orden <- rsm(R ~ Bloque + SO(V1, V2), data = DATOS.Codificados) Obtengo el siguiente modelo: R = 103.92 -2.16
2013 Apr 12
1
Problemas para cargar R commander
Tengo problemas para cargar R commander en Mac iOS Mountain Lion y R 3.0.0 > library(Rcmdr) Error : .onAttach failed in attachNamespace() for ''Rcmdr'', details: call: structure(.External(.C_dotTclObjv, objv), class = "tclObj") error: [tcl] invalid command name "image". Error: package or namespace load failed for ''Rcmdr'' ¿Cuál pude
2005 Sep 19
1
library (tree)- which samples belong to each terminal branch?
Dear all What I would like to know is if there is a way to know which specific samples fall within a terminal branch created by tree? The classification summarizes data, but I want to know which specific samples fall within each classification (branch in the dendrogram). Data contains site codes and multiple fields describing the characters of a single specimen of grass growing there.
2005 Oct 13
2
high resolution images for publication
Dear all I am using R to produce ordinations library(vegan) and the plot function produced looks great on the screen but when I send it to jpg or pdf or eps the resolution is not so good. Can you tell me how to get high resolution images out of R for publication? Cheers Chris Buddenhagen, Botany Department, Charles Darwin Research Station, Santa Cruz,Galapagos. Mail: Charles Darwin
2017 Jun 19
2
Problema con Histograma con porcentajes usando ggplot
Creo que esto me da para DK, y luego veré como aplicar el barplot ess %>% filter(cntry %in% c("DK")) %>% count (stflife) %>% mutate (freq = (n /sum(n)*100))%>% print 2017-06-18 19:01 GMT-05:00 Antonio Rodriguez Andres < antoniorodriguezandres70 en gmail.com>: > He conseguido el total para un país, pero no me deja usar percent = > count() /sum(count),
2005 Sep 12
3
Covert list of list to dataframe for export or outputting by(test) output
Greetings, I am running a buch of wilcox tests and need to be able to rapidly export the results into a csv file. I have attached example code as well as my attempts to get what I need. I have tried unlist,cbind,rbind etc but I am obvously missing something simple. FYI I am actually running about 50 WRS tests per dataset, this is just an example. Thanks 10^6 Mike AKCCR <-