Python Forum
How do I translate this into python code? (excel vlookup)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I translate this into python code? (excel vlookup)
#6
I figured how to use the merge command (sorta). The following code combines both df1 and df2 together- (I added left/right on because this is the column I need to merge on). Works great but I dont want to merge all columns from both dataframes.
pd.merge(df1, df2, left_on='apples', right_on='drinks')
. I read online and looked at alot of youtube videos and people do associate vlookup with merge. But in all examples they end up bringing in all columns, which I do not want to happen.


Ultimately, yes I do want to merge on column C from df1 to df2.."but" I want to keep df1 intact but ONLY bring in column D from df2 into df1. I do not want to bring in all columns from df2. Please look below, this is exactly what I want to happen.


CURRENT STATE
df1
A | B | C | D
-----------------------------------
grapes|berry | apples | mango

df2
A | B | C | D
-----------------------------------
veggies|meat | drinks | apple_types

FUTURE STATE
df1
A | B | C | D | E |
-----------------------------------
grapes|berry | apples | mango |apple_types

Thank you for your help. I am going crazy on this. Wall
Reply


Messages In This Thread
RE: How do I translate this into python code? (excel vlookup) - by eeps24 - May-27-2020, 08:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Photo How do you translate this in Python? pythonflea 5 2,747 Jan-24-2021, 07:58 PM
Last Post: Serafim
  Translate some code form C++ (complex vector) CarnariusXx 11 4,089 Jan-06-2021, 07:58 PM
Last Post: CarnariusXx
  Python Package for deploying python code in Excel on machines without python UGuntupalli 2 6,989 Jul-31-2019, 04:05 AM
Last Post: UGuntupalli
  How do I write a line of code into an excel spreadsheet using Python code? Emerogork 2 3,272 Feb-07-2018, 06:54 PM
Last Post: snippsat
  I'm working onn below code to extract data from excel using python kiran 1 3,349 Oct-24-2017, 01:42 PM
Last Post: kiran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020