Displaying 20 results from an estimated 10000 matches similar to: "multiplot plot spacing and text strip"
2010 Nov 30
2
Adding text to a multiplot (via mfrow)
Hi
I have created a set of 4 barplots using mfrow=c(2,2) and need to
add a heading that spans the margin of the bottom 2 graphs.
I have used locator(1) to find the coordinates but I dont seem to be able to
add text anywhere on this multiplot.
I would be really grateful if anyone could tell me if there is a simple
method of achieving this.
Many thanks
Sam Jones
--
View this message in
2009 Jul 01
1
abline going out of bounds
Hi,
I have a multiplot of 6 rows and 1 column.I need to draw vertical lines in
each plot.However when I use abline(v=locator(1)$x) in some plots the line
only comes for half the box and it goes beyond the box in others.I suspect
this has something to do with the margins.any help?
--
Rajesh.J
[[alternative HTML version deleted]]
2006 May 29
2
line over multiplot
Dear Listmembers,
I do have a multiplot with 1 row and 4 columns (4 scatter plots with
same x- and y-axe plotted in one row). I would like to draw a horizontal
line across the whole multiplot at a certain y-value. Unfortunately the
normal abline command stops between the plot.
I hope my problem is clear and there is somebody who can help me
Thanks in advance
Thomas H.
2004 Oct 25
2
par("usr") trouble in multiplot axis scaling
Hello,
I'm blotting a series of growth curves into a multiplot environment
created with layout().
since I want the four plots to be easily visually comparable, I do the
following:
#first plot
plot(x,y,<stuff>)
standarduser<-par()$usr
...
<some fitting>
...
lines(spline(x, <fitted_equation>))
#everything all right till here
# second plot
plot(x,y,<stuff>)
1998 Mar 26
1
R-beta: multiplot using fig
I followed Bill Venables's suggestion and tried to make a multiplot figure
with fig (using R .62).
> x<-rnorm(100)
> y<-rnorm(100)
> x11()
> par(fig=c(0,2/3,0,1))
> plot(x,y)
> par(fig=c(2/3,1,0,1))
> qqnorm(x)
> postscript(file="twoplot.ps")
> par(fig=c(0,2/3,0,1))
> plot(x,y)
> par(fig=c(2/3,1,0,1))
> qqnorm(x)
However
2009 Feb 22
3
line joining graphs
hi,
I need to draw a line joining graphs,but abline stops within a graph.What do
i do to cover portions between two graphs
--
Rajesh.J
[[alternative HTML version deleted]]
2009 Jul 10
2
drawing hmms
Hi,
I need to draw hmm's in R.I also need to include a small plot near each
state of the hmm.How can I do this?
--
Rajesh.J
[[alternative HTML version deleted]]
2009 Sep 10
2
Plot area reduction
Hi,
I need my plot to occupy a thin strip-like area but the plot area in R is a
square so when I save it and reduce its height to a strip in my document the
font in the graph looks flattened. Is there someway i can do this in R
itself?..so that my plot is a strip but the font looks normal
--
Rajesh.J
[[alternative HTML version deleted]]
2010 May 15
2
Normalizing plot tick values
Hi,
I have a plot whole tick values along the axis have a certain range 0 - x .
I need to normalize this range without changing my data files. for e.g.,
if my plot has tick values at 10,20,30,40,50... i have to make this 2,4,6,
etc. but without changing the plot data... I am hoping I can add something
to the plot command that goes like tick values divided by a quantity.
Any help is appreciated.
2009 Jul 21
1
legend title in qplot
Hi,
I've used the following command in qplot
qplot(a$V1,geom="histogram",binwidth=0.15,fill =
factor(a$V2),ylab="Frequency",xlab="Rate");
but the title in the legend shows up as factor(a$V2)...how can i change
this?
--
Rajesh.J
[[alternative HTML version deleted]]
2009 Jul 03
1
block diagrams
Hi,
I need to draw something like the attached Image.Where can I do this in R?
--
Rajesh.J
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 09test2.eps
Type: application/postscript
Size: 116945 bytes
Desc: not available
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090703/eacc44f2/attachment-0002.eps>
2009 Aug 19
1
ggplot2 transparent pdf
Hi,
I plotted a histogram using ggplot2 and saved it as a pdf.However, the
portions outside the histogram dont appear transparent when I use a
non-white bg colour in my latex document.What can I do to make them
transparent?
--
Rajesh.J
[[alternative HTML version deleted]]
2010 Sep 10
1
faster unlist,strsplit,gsub,for
Hi,
I perform the operations unlist,strsplit,gsub and the for loop on a lot of
strings and its heavily slowing down the overall system. Is there some way
for me to speeden up these operations..maybe like alternate versions that
exist which use multiprocessors etc.
--
Rajesh.J
[[alternative HTML version deleted]]
2010 Sep 01
2
Using packages built in linux in windows
Hi,
I built a package in linux and would like to use it in windows. I cant build
the package again in windows because it would miss the necessary libraries
etc(I'm using Rcpp). So I need to generate a binary version and try to
install it in windows. I tried this and I get the error
/cygdrive/RTools/bin/cp: target 'xf->>' is not a directory
Can someone help me with this?
--
2010 Sep 05
4
converting string vector to integer/numeric vector
Hi,
Is it possible to convert a string vector to integer or numeric vector? In
my situation I receive data in a string vector and have to convert it based
on a given type.
--
Rajesh.J
[[alternative HTML version deleted]]
1998 Mar 16
1
R-beta: multiplot figure problems
I wanted to have a figure consisting of 2 square plots, one above the
other (2 rows, 1 column).
I am using 61.1 on Linux.
I did:
> x1<-rnorm(100)
> y1<-rnorm(100)
> par(mfcol=c(2,1))
> plot(x1,y1,pty="s",mfg=c(1,1,2,1))
> plot(x1,y1,pty="s",mfg=c(2,1,2,1))
The resulting figure consists of two plots, one above each other, BUT they
are extremely squished in
1997 Nov 10
2
R-alpha: text outside plots
When text() is used to write a string in the margin of a plot (for
example, between plots on a multiplot screen), the words appear on the
window but not when a postscript file is produced. In fact, they are
in the file, but clipped. This should be made consistent, preferably
so that they appear in both.
Jim
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
r-devel
2011 Dec 07
1
Help! I couldn't put multiple qplot on the same page...
Hi all,
I am stuck at ploting multiple graphs on one page. I don't why it doesn't work.
All the 6 plots are either exactly the same, or they simply don't plot
at all. I made sure that in each iteration the "datasub" and
"factorsub" are different ...
Could you please help me?
Thanks a lot!
I did my homework and followed the following advice:
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se
2013 Apr 23
3
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal error has occurred. Please se
Hi guys
when i''m doing bundle install i got this type of error
whats this?
please help me.
rajesh@rajesh:~/workspace/Cybermedia_Test$ bundle install
Fetching gem metadata from http://rubygems.org/.Unfortunately, a fatal
error has occurred. Please see the Bundler
troubleshooting documentation at http://bit.ly/bundler-issues. Thanks!
2012 Nov 21
2
[LLVMdev] Extended Inline asm with double data type crashes clang
Thanks Rafael,
Hello All,
Could anyone please comment, which part in selectiondag need to be
understood/modified to fix this.
Regards,
Rajesh
On Wed, Nov 21, 2012 at 2:38 AM, Rafael EspĂndola <
rafael.espindola at gmail.com> wrote:
> I reported http://llvm.org/pr14393 to track it.
>
> On 20 November 2012 05:18, rajesh viswabramana
> <viswabramana.rajesh at