Displaying 1 result from an estimated 1 matches for "bps6".
Did you mean:
bps
2007 Aug 29
1
Plot command drops part of the plot for large plots in multiple figure environment
...memory used by the Rgui
process is slightly less than 400Mb.
The plot command I use is
Fplot6_Det_OK (d1, d2, d3, d4, d1, d2, BPS1, BPS2, BPS3, BPS4, BPS1,
BPS2)
I am using the following two small plot functions:
Fplot6_Det_OK = function(d1, d2, d3, d4, d5, d6, BPS1, BPS2, BPS3, BPS4,
BPS5, BPS6) {
# Purpose: Plot detector status for MONICA loops
# make 3x2 subplot window and plot 6 loops
#
#
op <- par(no.readonly = TRUE)
par_plot6 <- par(mfrow = c(3, 2))
FplotDetOK (d1, BPS1)
FplotDetOK (d2, BPS2)
FplotDetOK (d3, BPS3)
FplotDetOK (d4, BPS4)
FplotDetOK (d5, BPS5)
Fplot...