Python Forum
Difference of two columns in Pandas dataframe
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Difference of two columns in Pandas dataframe
#1
Hi I tring to get two columns from Excel and parse to a DataFrame, after I need subtract this columns.

1
2
3
4
5
6
7
8
9
         
ndf = xw.Range('AI1:AJ' + str(len(last_row))).options(pd.DataFrame).value
 
#Error in this line below
ndf['VC-BC'] = ndf['VC'] - ndf['BC']
     
#xw.Range("BH1").options(index=False).value = ndf
 
print(ndf.head(20))
After run code error appear
Error:
C:\Users\alexandre.goncalves>C:/Users/alexandre.goncalves/AppData/Local/Programs /Python/Python38-32/python.exe c:/Users/zinho/Downloads/projetos/f at_vfour.py Traceback (most recent call last): File "C:\Users\zinho\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\indexes\base.py", line 2646, in get_loc return self._engine.get_loc(key) File "pandas\_libs\index.pyx", line 111, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 138, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1618, in pandas._libs.hashtable.PyObjectHashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1626, in pandas._libs.hashtable.PyObjectHashTable.get_item KeyError: 'VC' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:/Users/zinho/Downloads/projetos/fat_vfour.py", line 90, in <module> ndf['VC-BC'] = ndf['VC'] - ndf['BC'] File "C:\Users\zinho\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\frame.py", line 2800, in __getitem__ indexer = self.columns.get_loc(key) File "C:\Users\zinho\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\indexes\base.py", line 2648, in get_loc return self._engine.get_loc(self._maybe_cast_indexer(key)) File "pandas\_libs\index.pyx", line 111, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 138, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1618, in pandas._libs.hashtable.PyObjectHashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1626, in pandas._libs.hashtable.PyObjectHashTable.get_item KeyError: 'VC'
If try show my new dataframe display like this.
Output:
BC VC 1845.60 0.00 963.72 0.00 1898.00 0.00 15.43 5.56 8.07 2.91 4.99 1.79 41.18 14.75 34.14 12.30 77.32 21.65 107.28 107.28 7.00 2.51 18.50 6.63 6.88 2.47 19.39 6.95 27.96 10.08 51.55 14.43 26.86 9.62 108.02 38.93 98.10 35.15 108.85 39.23
Reply
#2
Hi any help?

this is my cross-post
https://stackoverflow.com/questions/6242...-dataframe
Reply
#3
My question is solved now, thank you
I miss this
1
ndf = xw.Range('AI1:AJ' + str(len(last_row))).options(pd.DataFrame).value
Would be this
1
ndf = xw.Range('AI1:AJ' + str(len(last_row))).options(pd.DataFrame, index=False).value
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question [Solved] Formatting cells of a pandas dataframe into an OpenDocument ods spreadsheet Calab 1 464 Mar-01-2025, 04:51 AM
Last Post: Calab
  Find duplicates in a pandas dataframe list column on other rows Calab 2 1,874 Sep-18-2024, 07:38 PM
Last Post: Calab
  Find strings by index from a list of indexes in a different Pandas dataframe column Calab 3 1,526 Aug-26-2024, 04:52 PM
Last Post: Calab
  Add NER output to pandas dataframe dg3000 0 1,101 Apr-22-2024, 08:14 PM
Last Post: dg3000
  How to add columns to polars dataframe sayyedkamran 1 3,071 Nov-03-2023, 03:01 PM
Last Post: gulshan212
  concat 3 columns of dataframe to one column flash77 2 2,066 Oct-03-2023, 09:29 PM
Last Post: flash77
  HTML Decoder pandas dataframe column mbrown009 3 2,546 Sep-29-2023, 05:56 PM
Last Post: deanhystad
  Use pandas to obtain cartesian product between a dataframe of int and equations? haihal 0 1,953 Jan-06-2023, 10:53 PM
Last Post: haihal
  Pandas Dataframe Filtering based on rows mvdlm 0 2,025 Apr-02-2022, 06:39 PM
Last Post: mvdlm
  Pandas dataframe: calculate metrics by year mcva 1 3,328 Mar-02-2022, 08:22 AM
Last Post: mcva

Forum Jump:

User Panel Messages

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