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
(Originally posted in IRkernel/IRkernel#447.)
With R backend data.frame(letter=c("A", "B&C", "D"), number=c(1000,2,30))
data.frame(letter=c("A", "B&C", "D"), number=c(1000,2,30))
Displays something like this:
The misaligned cell in html appears as <span style="white-space:pre-wrap"> 2</span>
<span style="white-space:pre-wrap"> 2</span>
The text was updated successfully, but these errors were encountered:
OK, so the pre-wrap gets introduced by this function
all matrixes/data.frames go through repr_matrix_generic
repr_matrix_generic
the first thing done is ellip_limit_arr(x), which introduces those spaces:
ellip_limit_arr(x)
> repr:::ellip_limit_arr(data.frame(letter=c("A", "B&C", "D"), number=c(1000,2,30))) letter number 1 "A " "1000" 2 "B&C" " 2" 3 "D " " 30"
Sorry, something went wrong.
No branches or pull requests
(Originally posted in IRkernel/IRkernel#447.)
With R backend
data.frame(letter=c("A", "B&C", "D"), number=c(1000,2,30))
Displays something like this:
The misaligned cell in html appears as
<span style="white-space:pre-wrap"> 2</span>
The text was updated successfully, but these errors were encountered: