Displaying 20 results from an estimated 10000 matches similar to: "two scatter plots in one"
2013 Nov 06
3
Basic question: why does a scatter plot of a variable against itself works like this?
Hello all,
I just noticed the following behavior of plot:
x <- c(1,2,9)
plot(x ~ x) # this is just like doing:
plot(x)
# when maybe we would like it to give this:
plot(x ~ c(x))
# the same as:
plot(x ~ I(x))
I was wondering if there is some reason for this behavior.
Thanks,
Tal
----------------Contact
Details:-------------------------------------------------------
Contact me:
2006 Sep 28
3
complex plots using layout()
Dear r-help,
I am trying to plot several scatter plots with marginal histograms on
one page. Ideally, a page is equally divided into 4 figure regions.
Within each figure region, a scatter plot with marginal histograms will
be plotted.
I followed Dr. Paul Murrell's code released online to successfully plot
the scatter plot with marginal histograms. The code applies "layout()"
to
2009 Jul 21
4
how to transform m/d/yyyy to yyyymmdd?
Hello,
I have a set of data that has a Date column looks like this:
12/9/2007
12/16/2007
1/1/2008
1/3/2008
1/12/2008
etc.
I'd like the date to look something like the follow (so that I could sort by
date easily).
20071209
20071216
20080101
20080103
20080112
How to do it? Thank you very much
Julia
-- 
View this message in context:
2007 May 08
2
draw two plots on a single panel
Hi,
I have 2 dataset,
plot(data1)
plot(data2),
but it comes as two graphs, can I draw both on a single panel so I can
compare them?
Thanks
Pat
2000 Sep 07
3
plot with two y axes
I'm trying to make a transition from S-plus under Windows to R under
Linux.  My immediate aim is to produce a scatter plot with two y-axes
with different scales. That can be done in S-plus with a command of the
following form:
guiPlot( PlotType="Scatter",  DataSet="execon",
Columns="years,hstart,ship", AxisType="Multiple Y" ),
where years, hstart, and
2009 Mar 08
1
fill the space between to lines
hi,
the code below produces me two curved lines.
Now I want to fill the space between these curves with a color and I  
don't have any idea how to do that with R.
I tried it with the polygon() function but it didn't worked out.
Can someone her give me a hint on that?
thanks!
x1 <- c(0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2,1.3,1.4,
2008 Oct 10
4
how to store lme/lmer fit result
Dear R users,
I am building a hierarchical model on a large data set. It can take quite
some time to finish one fit, I was just wondering whether it is possible to
store the fit object (the result) to a file for later (offline) analysis. 
thanks
Julia 
-- 
View this message in context: http://www.nabble.com/how-to-store-lme-lmer-fit-result-tp19910951p19910951.html
Sent from the R help mailing
2009 Jun 17
3
how to read in only some columns of a data file
Hello,
I have a data file (.csv) that has a size of about 2.6 GB. I am not able to
read in the whole data set because of the memory limit. I actually only need
some columns (3 columns) of the data set, is there a way to read in
specified columns?
I am using windows. 
Thanks,
Julia
-- 
View this message in context:
2008 Sep 11
3
Calculate mean/var by ID
Hello,
I have a data set that looks like this. 
ID    value
111     5
111     6
111     2
178     7
178     3
138     3
138     8
138     7
138     6
.
.
.
I'd like to calculate the mean and var for each object identified by the ID.
I can in theory just loop through the whole thing..., but is there a easier
way/command which let me calculate the mean/var by ID?
Thanks,
Julia
-- 
View this
2011 Mar 09
4
Extracting only odd columns from a matrix
Hi,
This might seem like a simple question but at the moment I am stuck for ideas. The columns of my matrix in which some data is stored are of this form:
X1     Y1     X2     Y2     X3     Y3     ...     Xn     Yn
with n~100. I would like to look at just the X values (i.e. odd column numbers). Is there an easy way to loop round extracting only these columns?
Any help would be appreciated.
2006 Jun 21
4
help on ploting various lines
Dear All,
I tried to plot a variety of lines(curves) on same figure. What I did is,
plot(x=x1,y=y1)
lines(x=x2,y=y2)
lines(x=x3,y=y3)
...
In my data, the maximum of y1 is much smaller than those maximums of other y vectors. So, in the figure I got, there are some curves which are not complete, I mean, they were cut off at the maximum of y1 at the y axis. Could anybody point out some right
2009 Jun 01
2
how to checking whether elements of a vector changed or not.
Hello,
I have a vector:
x <- c("A", "A", "A", "B", "A", "A", "C")
I'd like to compare each of elements of vector x from its previous element
(except for the 1st element which does not have previous element). So I'd
like to get a vector y (of same length) that looks something like
(0, 0, 0, 1, 1, 0, 1) or
(F, F, F,
2003 Mar 26
3
hist overlay...
thanks to all for the 2d scatter plot.
i have one more. 
how do i plot 'hist(y1, col="red") and hist(y2,col="blue") in the same window? 
thanks again.
2009 Jul 30
4
Scatter Plot
Dear Sir
I want to write the numbers 1,2,3,----on a scatter plot instead of points,
like 1 corresponding to first point on plot, 2 corresponding second point
etc.
Help in this regard.
Regards
-- 
AMINA SHAHZADI
Department of Statistics
GC University Lahore, Pakistan.
	[[alternative HTML version deleted]]
2009 Apr 26
2
Conditional plot labels
Hi all,
I'm trying to do multiple graphs in a window like this:
        ___  ___   ___
ylab  |__|  |__|   |__|
        ___  ___   ___
ylab  |__|  |__|   |__|
        ___  ___   ___
ylab  |__|  |__|   |__|
         xl     xl     xl
If I try to put the labels manually, some graphs become smaller than
other and the output is really ugly.
In the thread title I put the word
2010 Mar 26
1
R Scatter plot partially generated in Fedora
Hi:
I?have installed R?first time in Linux/Fedora. I used the yum command
(yum install R). The installation was successful and went without any
errors. I could also run the following R script without any errors.
But, the generated scatter plot only has three blue dots added through
the first plot(...) statement. It does not show the main title,
x-/y-axes, x-/y-labels, and also the green dots
2008 Dec 16
1
surface contour plot help
I am trying to do a surface profile plot.
data is 
X                  Y(1)             Z(1)
1-jan-02       2002        number
2-jan-02       2002        number
.
.
.
1-jan-03       2003 (Y2)     number Z(2)
2-jan-03       2003 (Y2)     number Z(2)
.
.
.
until dec 31 2007.
 
I used the plot3d funtions to build a scatter point plot.
Call rinterface.rrun("library(rgl)")
Call
2008 Aug 25
1
lattice : using both strip and strip.left
Dear all,
I'm routinely using lattice and ggplot2, I wish to create a lattice  
theme that looks not too dissimilar to ggplot's defaults so I can  
include both graphs in a document with a consistent look.
To illustrate my questions, consider the following example:
> library(ggplot2)
> library(lattice)
>
> # example data
> x <- seq(0, 10, len = 100)
> y1 <-
2004 Nov 17
3
3d scatter plot with drop line
This is a follow up to my question from yesterday. I want to do in R
what is called a "3d scatter plot with drop lines" in S-PLUS.
Basically, it's a 3dscatterplot with lines connecting the x-y grid to
the z points.
The lines give a better perspective on the shape of the data surface.
How to?
Joel Bremson
UC Davis Statistics
2009 Jan 12
3
roll weekly data to monthly level
Dear R users:
I have a data set that looks something like this:
ID    time           y
1    2/01/2008    4
1    2/09/2008    12
1    9/01/2008    8
2    1/06/2008    3
2    3/01/2008    4
2    3/09/2008    9
2    6/03/2008    4
3    1/02/2008    3
3    1/10/2008    8
3    2/02/2008    7
3    2/10/2008    3
I'd like to sum up the weekly data to the monthly level, so that it looks
something