-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Tables like this will introduce double quotation marks in pandas/tibbles due to recognition of "1" as a character.
| x | Apple | Pear | Lemon |
|---|---|---|---|
| "1" | 2021-03-02 | 2000-01-01 | "1 1 2010" |
| "2" | 2019-02-05 | 1990-07-01 | "2 Jan 1990" |
| "3" | 2019-04-01 | 1984-09-01 | "25 Mar 1975" |
| "4" | 1993-12-01 | 1990-05-01 | "December 2020" |
I.e. table will look like:
tibble::tribble(
~X, ~Apple, ~Pear, ~Lemon,
""1"", "2021-03-02", "2000-01-01", ""1 1 2010"",
""2"", "2019-02-05", "1990-07-01", ""2 Jan 1990"",
""3"", "2019-04-01", "1984-09-01", ""25 Mar 1975"",
""4"", "1993-12-01", "1990-05-01", ""December 2020""
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working