Python Forum
[Solved] Delete a line in a dataframe using .reset_index() and .drop()
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] Delete a line in a dataframe using .reset_index() and .drop()
#2
Indexing in pandas is not like indexing a list. Deleting a row does not change the index of the trailing rows. In your example df_new doesn't have an index[0].
You filtered out index[0] when when creating df_new. df_new starts at index[1]

You can reset the index using reset_index()

https://pandas.pydata.org/pandas-docs/st...index.html
import pandas as pd
 
data = {'x':  [0,1, 2,3,4,5,6,7,8],
        'y': [60, 23, 24,42,56,10,20,25,13],
        'comment': ["false", "true","true","true","true","true","true","true","true"],
        }
 
df = pd.DataFrame(data)
df_new = df.loc[df['comment']  == "true"]
print(df_new)
df_new = df_new.reset_index(drop=True)
print(df_new)
df_new = df_new.drop(0)
print(df_new)
ju21878436312 likes this post
Reply


Messages In This Thread
RE: Delete a line in a dataframe - by deanhystad - Feb-25-2022, 02:39 PM
RE: Delete a line in a dataframe - by ju21878436312 - Feb-25-2022, 02:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete empty text files [SOLVED] AlphaInc 5 1,645 Jul-09-2022, 02:15 PM
Last Post: DeaD_EyE
  how to populate a dataframe thru line iteration ? knob 0 1,030 May-05-2022, 12:48 AM
Last Post: knob
  Find and delete above a certain line in text file cubangt 12 3,675 Mar-18-2022, 07:49 PM
Last Post: snippsat
Question [SOLVED] Delete specific characters from string lines EnfantNicolas 4 2,305 Oct-21-2021, 11:28 AM
Last Post: EnfantNicolas
  [SOLVED] Why does regex fail cleaning line? Winfried 5 2,538 Aug-22-2021, 06:59 PM
Last Post: Winfried
  [Solved] Reading every nth line into a column from txt file Laplace12 7 5,336 Jun-29-2021, 09:17 AM
Last Post: Laplace12
  [solved] unexpected character after line continuation character paul18fr 4 3,548 Jun-22-2021, 03:22 PM
Last Post: deanhystad
  [solved] dataframe and read_csv ju21878436312 4 2,968 Jun-16-2021, 06:01 AM
Last Post: ju21878436312
  Delete all contents of a file from the fifth line? PythonNPC 1 1,942 Apr-18-2020, 09:16 AM
Last Post: buran
  How to append and drop to next line while slice/indexing emryscass 3 2,684 Sep-26-2019, 01:06 PM
Last Post: Malt

Forum Jump:

User Panel Messages

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