gpt4 book ai didi

python - Python 中 R 的 read.table 等价物

转载 作者:太空狗 更新时间:2023-10-30 01:02:07 34 4
gpt4 key购买 nike

我正在尝试将我的一些处理工作从 R 转移到 Python。在 R 中,我使用 read.table() 来读取非常困惑的 CSV 文件,它会自动以正确的格式拆分记录。例如

391788,"HP Deskjet 3050 scanner always seems to break","<p>I'm running a Windows 7 64 blah blah blah........ake this work permanently?</p>

<p>Update: It might have something to do with my computer. It seems to work much better on another computer, windows 7 laptop. Not sure exactly what the deal is, but I'm still looking into it...</p>
","windows-7 printer hp"

被正确地分成 4 列。 1 条记录可以分成多行,并且到处都是逗号。在 R 中,我只是这样做:

read.table(infile, header = FALSE, nrows=chunksize, sep=",", stringsAsFactors=FALSE)

Python 中有什么东西可以同样出色地做到这一点吗?

谢谢!

最佳答案

您可以使用 csv 模块。

from csv import reader
csv_reader = reader(open("C:/text.txt","r"), quotechar="\"")

for row in csv_reader:
print row

['391788', 'HP Deskjet 3050 scanner always seems to break', "<p>I'm running a Windows 7 64 blah blah blah........ake this work permanently?</p>\n\n<p>Update: It might have something to do with my computer. It seems to work much better on another computer, windows 7 laptop. Not sure exactly what the deal is, but I'm still looking into it...</p>\n", 'windows-7 printer hp']

输出长度= 4

关于python - Python 中 R 的 read.table 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19535840/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com