We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
ggobi_display_save_picture(..., plot.only=TRUE) does not work for a scatterplot matrix.
ggobi_display_save_picture(..., plot.only=TRUE)
There's a programming error here:
if (inherits(display, "GGobiScatmatDisplay")) display_widget1 <- display_widget[[2]][[1]] display_widget2 <- display_widget[[2]][[3]][["widget"]]
It should be replaced with:
if (inherits(display, "GGobiScatmatDisplay")) display_widget1 <- display_widget[[2]][[1]] else display_widget2 <- display_widget[[2]][[3]][["widget"]]
The text was updated successfully, but these errors were encountered:
fix ggobi#2
800df87
No branches or pull requests
Hello,
ggobi_display_save_picture(..., plot.only=TRUE)
does not work for a scatterplot matrix.There's a programming error here:
It should be replaced with:
The text was updated successfully, but these errors were encountered: