-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
BugIO DataIO issues that don't fit into a more specific labelIO issues that don't fit into a more specific label
Milestone
Description
What in the world is going on here? Shouldn't these both give unicode?
import pandas
from StringIO import StringIO
fin = StringIO("Łaski, Jan;1")
df1 = pandas.read_table(fin, sep=";", encoding="utf-8", header=None)
fin.seek(0)
df2 = pandas.read_csv(fin, sep=";", encoding="utf-8", header=None)
type(df1["X.1"].values[0])
type(df2["X.1"].values[0])
Metadata
Metadata
Assignees
Labels
BugIO DataIO issues that don't fit into a more specific labelIO issues that don't fit into a more specific label