Текстовые столбцы следует импортировать как строки при чтении файла CSV:
df = pd.read_csv('tweet.csv')
print(df)
Выход:
user text
0 scotthamilton is upset that he can't update his Facebook by ...
1 mattycus @Kenichan I dived many times for the ball. Man...
2 ElleCTF my whole body feels itchy and like its on fire
3 Karoli @nationwideclass no, it's not behaving at all....
4 joy_wolf @Kwesidei not the whole crew
5 mybirch Need a hug
print(df.dtypes)
Выход:
user object
text object
dtype: object
Тип Pandas object
dtype совпадает с типом Python str
и используется для текста.
Если вам нужно преобразовать тип столбца в str, вы можете использовать следующее:
df.text = df.text.astype(str)