Displaying 1 result from an estimated 1 matches for "heatshades".
2005 Mar 05
1
Problem with plotting size/location on variation of star/segment plot
...# generate sample data for plot:
a<- sample(c(20:70)*.01,18)
testA <-
as.data.frame(rbind(a,a+((1-a)*sample(c(1:10)*.1,18,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...