标签: r python-3.x pandas
我正在将用R编写的一段代码转换为Python。 请建议如何将R中的合并功能转换为等效的Python。
testDataFrame<<- merge(df_A, dfTBHrchy[,c("child", "name")],by.x = "Account",by.y = "child",all.x = TRUE)