Displaying 5 results from an estimated 5 matches for "smallplot".
2010 Nov 17
0
Label positions for the legend when using smallplot within image.plot
Hi all,
after having many images plots on my window, I want to have one single
legend plot.
For that I use image.plot where the position is defined within smallplot:
image.plot(legend.only=T,zlim=c(0,400),
col=rainbow(50),horizontal=T,smallplot=c(.05,.45, .03,.06))
This works fine, but I found that the labels of the x axis are too much
far away from the axis.
Therefore I wanted to use
par(mgp=c(0, 0.5, 0))
in order to write the labels closer to...
2013 Dec 02
3
legend position
Hi all.
I'm ploting a raster and I can't find the proper way to move the legend. For example,
r = raster(system.file("external/test.grd", package="raster"))plot(r)
How can I put the legend at the desired position?
Thank in advance,Phil
[[alternative HTML version deleted]]
2012 Mar 19
1
plot method for rasters and layout
...plot(raster3)
> plot(raster4)
> plot(any.other.graph.supposed.to.fall.in.frame.5)
i.e. 3 rasterplots on the first row followed by the fourth raster and the
fifth graph, all of same size, the [2,3] frame being empty.
I suppose this is due to a conflict between layout and the bigplot/smallplot
approach used by the imageplot() function, from which the plot method for
rasters is said to be inspired. But I am not sure and I cannot work it out.
Do I miss something, and can anybody help ?
All the best to all of you, thanks as always for all the work done here !
Olivier
-----------...
2010 Dec 15
1
levelplot blocks size
...have a very low z value,
but what I'm more interested in is grouping these values together and
plotting a larger point for all of those smaller points.
For example, when I limit the x and y axes further, I get the following
(where x and y axes are limit to 0:10):
http://dl.dropbox.com/u/25473/smallplot.png
Now this is good, but this data gets totally lost when plotted like in the
first example, so I need to create larger "blocks", then compute a z value
for that entire block.
The question is: how do I do this?
Any help much appreciated!
Thanks,
Jonathan
--
View this message in con...
2010 Sep 16
2
use same breaks and colors, but the displayed scale are different-image.plot()
Hi all,
I want to put several figures in a one figure for easy comparison, so i
need to use the same methods to plot these figures. The following is an
example. I also list my method, but it does not work.
#Example data
x<- 1:10; y<- 1:10; z<- outer( x,y,"+");z2<- outer( x,y,"-")
#Quick view them
image.plot(x,y,z) #relatively larger value
image.plot(x,y,z2)