Displaying 20 results from an estimated 1000 matches similar to: "background colour"
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.
2006 Sep 06
2
RJS Javascript oddity - trying to call Element.setStyle
Hi all,
I have a really simple web page. Right now, it''s just a button and a square
div. What I want to do is to change the background color of the div to red
when the button is clicked. My form code looks like this:
<%= form_remote_tag :url => {:action => ''color_show''} %>
color_show.rjs looks like this:
page <<
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
2005 Nov 07
2
question about Effect.Highlight and IE 5.5
I''ve recently begun testing some of the scriptaculous functionality in
IE 5.5, since my company wants me to support as many browsers as
possible. When I do an Effect.Highlight on a <tr>, it doesn''t quite
work right. I''ve figured out a few things, but I''m not sure whether you
want to change them or not. Here''s what I know:
In
2006 Mar 04
1
RE: Question about event listener highlighting withchild elements
1. Create a separate class that has your highlight/unhighlight behavior
in it, and extend just the element you want to highlight with that
class... like this (also allows you to easily apply this behavior
elsewhere when you need it in the future):
Object.extend(this.el, HighlightBehaviorClass.prototype)
2. When defining your event handlers, assign them to variables so you
have a
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:
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 Apr 17
1
multiplot plot spacing and text strip
Hi everyone,
I have a certain requirement and I'm not sure what to do.I need to reduce
the spacing between plots in a multiplot. Make them really close together
such that they almost touch.
Also, I need to add a rectangular strip under my plot(very close to it) such
that the strip contains some text describing it.
Any help is appreciated
--
Rajesh.J
[[alternative HTML version deleted]]
2012 May 12
2
ggplot simple question.
I have a matrix like this
Name 1 2
3 4 5
NM_001039514 1.033557047 0.7469879518 0.9004524887 0.8613861386 0.7952499048
NM_001039723 1.0759493671 1.2315789474 0.8666666667 1.1142857143
0.9428011471
NM_001042605 0.9897435897 0.8870431894
2000 Jun 29
3
Overal plot title after mfrow and .Rhistory questions.
Hello everyone,
I had a few questions that I have not been able to figure out despite a lot of
reading.
1) Adding a title to a multiplot figure:
If I plot multiple plots with
>par(mfrow=c(2,6))
how do I add an overall title to the figure, not the individual plots?
2) Saving histories on the fly:
Is there a .Rhistory equivalent to
>save.image()
? I would like to be able to save the
2010 Sep 15
2
barplot: space between axis and bars
Hi all,
I have a problem with a rather simple plot (which I have used several
times) - barplot.
I want to create a barplot, where no space is between the axis and the bars.
Example:
barplot(rnorm(10), space=0)
creates a vertical axis at the left and bars. I want to skip the space
between both.
Thank you for your help.
Daniel
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
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]]
2013 Mar 09
1
Changing default order of plots in par
Hi,
I wanted to change the order of how the plots appear in a multiplot
scenario. For example, in the code below:
#####
pdf('test.pdf',width=8,height=8)
par(mfrow = c(2,2))
for(i in 1:2){
v1 <- sample(1:1000,50)
v2 <- sample(1:1000,50)
mat <- cbind(v1,v2)
plot(v1,v2)
boxplot(mat)
}
dev.off()
#######
The plot ordering is that the first row gets filled in first,
2005 Jul 19
1
Small patch to Effect.Highlight
I sometimes highlight a div that originally has no background colour.
The current Effect.Highlight will leave my div with a white
background, and it was not quite right for my purposes.
My one-line-patch is simply to add the afterFinish option if there is
no current background colour (insert at line 268 of effects.js
rev:1756)
if ( !current ) options.afterFinish = function(effect){
2011 Nov 23
1
R-latex syntax highlighting?
Hello,
Can anyone provide or point me to a good setup for the listings latex package that would produce nice R-syntax highlighting?
I am using an example I found in internet for setting up listings like this:
\lstset{
language=R,
basicstyle=\scriptsize\ttfamily,
commentstyle=\ttfamily\color{gray},
numbers=left,
numberstyle=\ttfamily\color{red}\footnotesize,
stepnumber=1,
numbersep=5pt,
2010 Apr 05
3
syntax error, unexpected '\n', expecting tASSOC
Hey all,
I get the following error. Now I know it''s related to a curly brace, but
it seems that all curly braces are properly in place. So I''m not sure
why I get this error:
SyntaxError in DashboardController#panels
rails/app/controllers/dashboard_controller.rb:170: syntax error,
unexpected ''\n'', expecting tASSOC
def panels
addDetailToContainer =
2009 Jul 20
0
No subject
at least once a week I receive such an attack coming from a different ip.
I will read the articles. Thanks again to everyone.
Regards,
Rodrigo Lang.
2010/6/29 Kenny Watson <kwatson at geniusgroupltd.com>
> Hi, you can use fail2ban
>
2007 Oct 17
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
libswfdec/swfdec_as_strings.c | 2
libswfdec/swfdec_initialize.as | 3
libswfdec/swfdec_initialize.h | 306 ++--
libswfdec/swfdec_text_field_movie.c | 4
libswfdec/swfdec_text_field_movie.h | 3
libswfdec/swfdec_text_field_movie_as.c | 83 +
test/trace/Makefile.am | 20