merliseclyde / BAS

BAS R package for Bayesian Model Averaging and Variable Selection
https://merliseclyde.github.io/BAS/
GNU General Public License v3.0
41 stars 16 forks source link

To include graph parameters for image.bas function #43

Closed christineymshen closed 3 years ago

christineymshen commented 4 years ago

Noted that the graph parameters (e.g., for inner margin etc.) are hardcoded in image.bas function. Think would be great if can include them in the function so that user inputs can overwrite function default parameters. This would be useful for cases where the parameter names are very long to be fully shown under the current set up.

Details here:

BAS:::image.bas

if (rotate) {
        par(mar = c(6, 6, 3, 5) + 0.1)

...

else {
        par(mar = c(6, 8, 6, 2) + 0.1)
....

Thanks!!