gpt4 book ai didi

python - 在导入时指定 dtype 选项或设置 low_memory=False

转载 作者:行者123 更新时间:2023-12-04 01:18:01 27 4
gpt4 key购买 nike

我正在使用以下代码:

df = pd.read_csv('/Python Test/AcquirerRussell3000.csv')

我有以下类型的数据:
18.07.2000  27.1875         0 08.08.2000  25.3125       0.1 05.09.2000  \
0 19.07.00 26.6250 -0.020690 09.08.00 25.2344 -0.003085 06.09.00
1 20.07.00 26.6250 0.000000 10.08.00 25.1406 -0.003717 07.09.00
2 21.07.00 25.6875 -0.035211 11.08.00 25.5781 0.017402 08.09.00
3 24.07.00 26.2500 0.021898 14.08.00 25.4375 -0.005497 11.09.00
4 25.07.00 26.6875 0.016667 15.08.00 25.5625 0.004914 12.09.00

我收到以下错误:
Pythone Test/untitled0.py:1: DtypeWarning: Columns (long list of numbers) have mixed types. 
Specify dtype option on import or set low_memory=False.

所以每第三列是一个日期,其余的都是数字。我想没有单一的数据类型,因为日期是字符串,其余的是浮点数或整数?我有大约 5000 列或更多和大约 400 行。

我见过与此类似的问题,但不太知道如何将其应用于我的数据。此外,我想在堆叠数据帧之后运行以下代码。
a = np.arange(len(df.columns))
df.columns = [a % 3, a // 3]
df = df.stack().reset_index(drop=True)

df.to_csv('AcquirerRussell3000stacked.csv', sep=',')

我应该使用什么 dtype?或者我应该将low_memory设置为false?

最佳答案

这从 here 解决了我的问题

dashboard_df = pd.read_csv(p_file, sep=',', error_bad_lines=False, index_col=False, dtype='unicode')

谁能艰难地向我解释这个答案?

关于python - 在导入时指定 dtype 选项或设置 low_memory=False,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53750791/

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