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
given the following code
png(paste0(getwd(), "/dotchart.png")) grps <- as.factor(mtcars$cyl) my_cols <- c("black", "red", "blue") dotchart(mtcars$mpg, labels = row.names(mtcars), groups = grps, gcolor = my_cols, color = my_cols[grps], cex = 0.6, pch = 21, pt.cex = 1.5, xlab = "mpg") dev.off()
The colors are not drawn for the plot characters, only as a faint colorless circle. This code works without problem in GNU R 3.6.3
The text was updated successfully, but these errors were encountered:
In Gnu R 3.6.3:
In Renjin 3.5-beta76 6
Sorry, something went wrong.
Upon further investigation, only when pch is set to 19, 20, 21 they are not colored, other values for pch are colored properly.
No branches or pull requests
given the following code
The colors are not drawn for the plot characters, only as a faint colorless circle. This code works without problem in GNU R 3.6.3
The text was updated successfully, but these errors were encountered: