-
Notifications
You must be signed in to change notification settings - Fork 138
Closed
Labels
Description
Describe the bug
If data frame values contain <, only the character string to the left of < is displayed on the data frame viewer.
To Reproduce
Steps to reproduce the behavior:
- Run the following code to create a data frame.
df <- data.frame(
A = c("aa", "a<a>", "a<a", "aa>", "a<a<a", "a>a>a"),
B = c("bb", "b<b>", "bb>", "b<b", "b>b>b", "b<b<b")
)- Display
dfin the Data frame viewer (View(df))
Screenshots
Environment:
- OS: Windows + Linux Container (DockerDesktop)
- VSCode Version: 1.55.1
- R Version: 4.0.4
- vscode-R version: 1.6.5


