如何从数据框中复制过滤后的值并将其粘贴到python中的其他过滤后的数据框中。我有222,980 * 50个CSV文件(2个文件)。第50列在一个文件中具有半值(基于过滤一个特定的列),在另一文件中具有其他半值(基于过滤一个特定的列),我想从一个文件复制并粘贴到另一文件。它包含分类和连续值变量。
我在49个变量上使用了内部合并函数(错误:行数较少),而在49个变量上使用了左合并函数(行数增加了一倍)。请帮助我
pd.merge(datamerg1, datamerg2, how='inner', on=[
'measurename', 'periodtype', 'period', 'organizationgroupid',
'organizationname', 'dimname', 'financialclass', 'payor', 'facility',
'servicearea', 'providername', 'procedurecode', 'totalcharges',
'totalcollections', 'totaladjustments', 'totalwriteoff', 'totaldenied',
'chargecptvolume', 'chargecptunits', 'paymentcptvolume',
'paymentcptunits', 'adjustmentcptvolume', 'adjustmentcptunits',
'deniedcptvolume', 'chargeperunit', 'collectionperunit',
'writeoffcptvolume', 'writeoffcptunits', 'writeoffperunit',
'deniedperunit', 'gcr', 'gcrprp', 'avg6monthsgcr', 'cashgoal',
'measurevaluecrp', 'measurevalueprp',
'measurevaluerunningaveragecurrent',
'measurevaluerunningaverageprevious', 'movingrange',
'movingrangelastsixmonths', 'stddeviation', 'ucl3sd', 'lcl3sd',
'3sdalert', 'ucl2sd', 'lcl2sd', '2sdalert', 'ucl1sd', 'lcl1sd',
'1sdalert'
])
我在49个变量上使用了内部合并函数(错误:行数较少),而在49个变量上使用了左合并函数(行数增加了一倍)。请帮助我