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
df <- matrix(1:6,ncol=2,dimnames=list(NULL,c('x','y'))) library(prettyB) barplot_p(df,axisnames = F) barplot(df,axisnames=F)
The text was updated successfully, but these errors were encountered:
Fix #14
105e563
Thanks for the report.
But I'm not sure about how best to handle cex.axis and cex.names. This is what makes base graphics a bit messy, as they are then past to par().
par()
Setting par(cex.axis = 2) before calling barplot_p will give the same effect. The issue I have is that
par(cex.axis = 2)
cex.axis
cex.names
Hopefully come up with a compromise soon.
Sorry, something went wrong.
Cran V0.2.2 (#15)
881a63a
* Fixes #13 * Address some of #14 * Moves to GitHub Actions
No branches or pull requests
df <- matrix(1:6,ncol=2,dimnames=list(NULL,c('x','y')))
library(prettyB)
barplot_p(df,axisnames = F)
barplot(df,axisnames=F)
The text was updated successfully, but these errors were encountered: