Ho un file UTF-8 con i dati di Twitter e sto cercando di leggere in un frame di dati Python, ma posso solo ottenere un tipo di 'oggetto' invece di stringhe Unicode:Come leggere i file UTF-8 con Pandas?
# file 1459966468_324.csv
#1459966468_324.csv: UTF-8 Unicode English text
df = pd.read_csv('1459966468_324.csv', dtype={'text': unicode})
df.dtypes
text object
Airline object
name object
retweet_count float64
sentiment object
tweet_location object
dtype: object
Qual è il diritto modo di leggere e forzare i dati UTF-8 in unicode con Pandas?
Questo non risolve il problema:
df = pd.read_csv('1459966468_324.csv', encoding = 'utf8')
df.apply(lambda x: pd.lib.infer_dtype(x.values))
file di testo è qui: https://raw.githubusercontent.com/l1x/nlp/master/1459966468_324.csv
http://stackoverflow.com/a/20670901/2141635 –
Uso di 'df.apply (lambda x: pd.lib.infer_dtype (x. valori)) 'mostra i tipi come unicode e misti, se si guarda il link sopra vedrete cosa sta succedendo –