1
私は、以下に述べる列を持つ2つのデータフレームを持っています。私が最初のものに2番目のものを追加しようとすると、私はValueErrorを得ています:平面の形状が誤差を揃えていません。Pandas dataframe.appendにエラーがあります:平面図形が整列していません
DF1列:
Index([ u'asin', u'view_publish_data',
u'data_viewer', u'relationship_viewer',
u'parent_task_id', u'submission_id',
u'source', u'creation_date',
u'created_by', u'vendor_code',
u'week', u'processor',
u'brand_name', u'brand_name_new',
u'bullet_point', u'cost_price',
u'country_of_origin', u'cpu_type',
u'cpu_type_new', u'item_name',
u'item_type_keyword', u'list_price',
u'minimum_order_quantity', u'model',
u'product_category', u'product_site_launch_date',
u'product_subcategory', u'product_tier_id',
u'replenishment_category', u'product_description',
u'style_name', u'vc',
u'vendor_code', u'warranty_description'],
dtype='object')
DF2列:
Index([ u'asin', u'view_publish_data',
u'data_viewer', u'relationship_viewer',
u'parent_task_id', u'submission_id',
u'source', u'creation_date',
u'created_by', u'vendor_code',
u'week', u'brand_name',
u'bullet_features', u'color_name',
u'itk', u'item_name',
u'list_price', u'new_brand',
u'product_catagory', u'product_sub_catagory',
u'product_tier_id', u'replenishment_category',
u'size_name', u'cost_price',
u'item_type_keyword', u'our_price',
u'is_shipped_from_vendor', u'manufacturer_vendor_code',
u'product_description', u'vendor_code'],
dtype='object')
どのように追加しますか? – jezrael
これらは、異なる列の2つの異なるデータフレームです。どのようにこれらを追加しますか? – Yorian
カラム名に基づいて追加したいと思います。列名が両方のデータフレームに存在する場合、最終データフレームには両方の列が含まれます。列がそれらのいずれかに存在しない場合、最終的なデータフレームのその列は、それを持たない列のNANを持つ必要があります。 –