Displaying 1 result from an estimated 1 matches for "majgrid".
Did you mean:
madrid
2005 Mar 05
1
Problem with plotting size/location on variation of star/segment plot
...,replace=T))))
## open new plot space
plot.new()
## plot data series:
stars(testA[2,], locations=0:1,full = TRUE, scale = F,
draw.segments=TRUE, add=TRUE,col.segments=heatshades[7])
stars(testA[1,], locations=0:1,full = TRUE, scale = F,
draw.segments=TRUE, add=TRUE,col.segments=heatshades[3])
majgrid <- matrix(rep((c(1:10)*.1),ncol(testA)),nrow=10,byrow=F)
## generate and plot radar grid:
mingrid <-
matrix(rep((c(1:10)*.1-.05),ncol(testA)),nrow=10,byrow=F)
stars(majgrid, locations=0:1, scale=F, draw.segments = TRUE,
add=T, lty=1, col.segments=0)
stars(mingrid, locations=0:1, scale=F,...