我想在文件中删除不必要的行,但我的原始数据中的数据类型被声明为对象。我尝试使用 .astype 对其进行转换,但它似乎不起作用。
df = pd.read_csv(raw_data, header=None)
print(df.dtypes) headers = ['random']
print("headers\n", headers)
df.columns = headers print(df.dtypes)
我只需要看起来像这样的数据:
::rc=80000000:lq=135:ct=31D2
其他一切都是不必要的。