pandas read_csv无法正确解析csv文件 [英] Pandas read_csv doesn't parse correctly csv file

查看:203
本文介绍了 pandas read_csv无法正确解析csv文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试读取csv文件,然后将其转换为数据帧,但我不知道为什么所有列都显示在第一行中,即使没有分隔符或分隔符,我也无法将它们分开.我不知道如何更改代码才能获得正确的结果? 这是文件的一行

I am trying to read csv file and then convert it to data frame but i don't know why all the columns are shown in the first row and even with separator or delimiter either without them I am not able to separate them. I don't know how to change code in order to have correct result? Here is one line of file

1330-5235-5560-xxxxx,"Jan 1, 2017",12:35:13 AM PST,,Charge,,Smart Plan (Calling & Texting),com.xxx,1,unlimited_usca_tariff_and,astar-y3,US,NC,27288,USD,4.99,0.950333,EUR,9.49

推荐答案

您需要在quoting设置为QUOTE_NONE/pandas.read_csv.html"rel =" nofollow noreferrer> read_csv :

You need set quoting to QUOTE_NONE in read_csv:

import csv

df = pd.read_csv('sample.csv', quoting=csv.QUOTE_NONE)

#sum some columns 
df['Transaction Date'] = df['Description'] + df['Transaction Date']
#create column from index
df['Description'] = df.index

#remove " from values
df['Description'] = df['Description'].str.strip('"')
df['Transaction Date'] = df['Transaction Date'].str.strip('"')
df['Amount (Merchant Currency)'] = df['Amount (Merchant Currency)'].str.strip('"')
                                                                   .astype(float)

df = df.reset_index(drop=True)
print (df.head(1))


            Description Transaction Date Transaction Time  Tax Type  \
0  8330-5235-5560-88882       Jan 8 2084  82:35:83 AM PST       NaN   

  Transaction Type  Refund Type                    Product Title Product id  \
0           Charge          NaN  Smart Plan ( Calling & Texting)  com.fight   

   Product Type              Sku Id  Hardware Buyer Country Buyer State  \
0             8  unlimited_usca_and  astar-y3            US          NC   

  Buyer Postal Code Buyer Currency  Amount (Buyer Currency)  \
0             24288            USD                     9.99   

   Currency Conversion Rate Merchant Currency  Amount (Merchant Currency)  
0                   0.95028               EUR                        9.49  

这篇关于 pandas read_csv无法正确解析csv文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆