Displaying 2 results from an estimated 2 matches for "6600ee07".
2018 Jun 01
0
How to alpha entire plot?
...annel
# round x to the nearest support point and add the channel specific offset
x <- isp[round(as.numeric(cut(x, breaks = N)))] + offset
return(x)
}
xi <- min(EU$DAX)
xa <- max(EU$DAX)
plot(interleave(EU$DAX, MIN=xi, MAX=xa, N=130, channel=1 ),
EU$CAC,
col = "#6600EE07",
type = "h",
ylim = c(0,6000),
xlab = "DAX")
points(interleave(EU$DAX, MIN = xi, MAX = xa, N = 130, channel = 2 ),
EU$FTSE,
col = "#EE000007",
type = "h")
Cheers,
B.
> On 2018-05-31, at 16:56, Ed Siefker <ebs152...
2018 May 31
2
How to alpha entire plot?
I have two chromatograms I want plotted on the same axes.
I would like the plots to be transparent, so the first chart is
not obscured.
I have tried adjustcolor(..., alpha.f=0.3), the problem is that
my chromatogram is so dense with datapoints that they
overlap and the entire graph just ends up a solid color. The
second histogram still obscures the first.
Consider this example:
col1 <-