Displaying 1 result from an estimated 1 matches for "point_typ".
Did you mean:
point_type
2008 May 19
2
labels in multiple plot
My code is the following:
point_type<-c("black","gray20","red"....)
...
for (i in 1:dim(m)[1]) {
par(pch=(18+i))
par(fg=point_type[i])
plot(m[i,], type='b', ylim = c(lower, upper), type = "l", ...)
par(new=T)
}
Now I need to add an 'explanati...