Displaying 8 results from an estimated 8 matches similar to: "Legend for two plots"
2009 Nov 17
2
Basic question on nominal data
Hello everybody,
I am new to R and I have a very basic question, but I couldn't get
this to work.
Let's say I have a vector
s = c("a","a","a","b","b","c","c","c","c")
s1 <- factor(s)
s2 <- summary(s1) leads to the following
a b c
3 2 4
How can I access the different aggregated values for a
2009 Nov 05
1
Adding a symbol/value/overlay to a boxplot in R
Hello everybody,
I am new to R and I am having the following problem.
I have the following boxplot:
boxplot(s$Estimate,u$Estimate,names=c("Security", "Usability"))
title(main="Estimated development time",ylab="Estimate (weeks)")
http://i35.tinypic.com/2rhw9rm.jpg
but I want to add a label or symbol for a specific value to every
boxplot. I uploaded a
2013 Jul 26
5
[FEEDBACK] Governance of GlusterFS project
Hello everyone,
We are in the process of formalizing the governance model of the
GlusterFS project. Historically, the governance of the project has been
loosely structured. This is an invitation to all of you to participate in
this discussion and provide your feedback and suggestions on how we should
evolve a formal model. Feedback from this thread will be considered to the
extent possible in
2012 Dec 08
1
imputation in mice
Hello! If I understand this listserve correctly, I can email this address
to get help when I am struggling with code. If this is inaccurate, please
let me know, and I will unsubscribe.
I have been struggling with the same error message for a while, and I can't
seem to get past it.
Here is the issue:
I am using a data set that uses -1:-9 to indicate various kinds of missing
data. I changed
2012 Mar 07
1
Demographic Variables in AIDS (Demand System)
Hi all,
I am using aidsEst( ) in "micEconAids" package to estimate Demand system.
But I would like to add more demographic variables in demand system. How can
I add those information?
for example:
mydata<-data.frame(p1,p2,p3,p4,
s1,s2,s3,s4,
totalexp,
2012 Jan 08
2
need help with axis ticks
hi,
i am using par(mrow=c(6,6)) function to get 6x6 plots on one screen. the
problem that i am having is that the axis tick labels are far away from the
ticks and going into previous plots (see attached figure). i need to know
how can i reduce the distance between the ticks and their values (y axis
values).the part of the code that i am using (after reading in the data) to
create the top row is:
2009 Dec 11
1
shared axes in multipanel plot
Hello
I've created a function to make a plot with multiple pannels from columns
of data that are created in a previous function. In the example below the
number of columns is 8, giving 4 pannels, but in general it takes data
with any number of columns and figures out a nice layout.
The panels all have the same axes, and so I wonder what functions are
avialable to create axes only on the
2012 Oct 31
10
Gráfico von varias variables
Estimados amigos,
Tengo el siguiente set de datos:
caps <- datos[datos$NombreDepartamento=="LANUS", c("CAPS", "personas",
"PersonasRCVG", "Con12Meses")]
caps$prevalencia <- round(caps$PersonasRCVG/caps$personas*100,1)
caps
CAPS personas PersonasRCVG Con12Meses prevalencia
2345 2345 1347 132 211 9.8
2363