search for: mypanel_v2

Displaying 1 result from an estimated 1 matches for "mypanel_v2".

Did you mean: mypanel_v1
2012 Jul 29
1
Zoo panel function
...######################################### ## EXAMPLE 2 - PASSING IN MY_COLOR AS PARAM (WITH WARNING) ## How would I make the color argument modular? ## This works, but throws errors ## What is the best way to to this? ########################################################### palette(rainbow(100)) mypanel_v2 = function(x, y, MY_COLOR, ...){ lines(x, y, lty=2, col='grey') points(x, y, col=MY_COLOR, pch=16) ## By the way I also tried a variety of strategies ## like this: # points(..., col=MY_COLOR, pch=16) ## but I get got warnings about passing in pch and col ## more than once, and "matchi...