Displaying 5 results from an estimated 5 matches for "smallplots".
Did you mean:
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
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
Hi list,
I thought I was used to layouts, but today I am facing a problem I cannot
overcome :
On my R installation (Windows 7 Pro, SP1, R version 2.13.0, daily update of
packages), I am not able to put raster plots in user defined layouts :
> layout.matrix<-matrix(c(1,2,3,4,5,5),2,3)
> layout(mat=layout.matrix)
> layout.show(5)
works fine, I get the correct frames in
2010 Dec 15
1
levelplot blocks size
Hi,
I am trying to produce a levelplot using the following:
library(lattice)
df <- read.table("data", sep="\t", header=TRUE)
gr = levelplot(df$z ~ df$x * df$y,
xlim=0:1000,ylim=0:1000,aspect="iso",col.regions=heat.colors)
print(gr)
The produced result is: http://dl.dropbox.com/u/25473/bigplot.png
Now this is correct, because each of those points have a very
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)