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
Windows 7, R 3.1.1, pander 0.5.2
Trying to show a matrix with named rows and columns with un-emphasized row names after setting the cell alignment produces an error:
require(pander) jj = matrix(1:4, nrow=2) rownames(jj) = colnames(jj) = letters[1:2] jj ## a b ## a 1 3 ## b 2 4 set.alignment("right") pander(jj, emphasize.rownames=FALSE) ## Error: basic_string::_S_create
FWIW, unsetting either row- or column names of the matrix avoids the error:
colnames(jj) = NULL set.alignment("right") pander(jj, emphasize.rownames=FALSE) ## as expected
The text was updated successfully, but these errors were encountered:
@RomanTsegelskyi can you please have a look at this? It seems to be rather related to C++, but I'll try to debug it in next few days as well
Sorry, something went wrong.
dc82f52
No branches or pull requests
Windows 7, R 3.1.1, pander 0.5.2
Trying to show a matrix with named rows and columns with un-emphasized row names after setting the cell alignment produces an error:
FWIW, unsetting either row- or column names of the matrix avoids the error:
The text was updated successfully, but these errors were encountered: