Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9220109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:16:18+00:00 2026-06-18T03:16:18+00:00

I have a list of 50 data.frame objects and each data.frame object contains 20

  • 0

I have a list of 50 data.frame objects and each data.frame object contains 20 rows. I need to exclude a row or a vector at each iteration from each of the data.frame object.

The single iteration may look something like this:

to_exclude <- 0  # 0 will be replaced by the induction variable
training_temp <- lapply(training_data, function(x) {
                                        # Exclude the vector numbered to_exclude
                                        }

Regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T03:16:19+00:00Added an answer on June 18, 2026 at 3:16 am
    df <- data.frame(x=1:10,y=1:10)
    
    thelist <- list(df,df,df,df)
    
    lapply(thelist, function(x) x[-c(1) ,] )
    

    this will always remove the first row. Is this like what you want, or you want to remove rows based on a value?

    This will always exclude the first column:

    lapply(thelist, function(x) x[, -c(1) ] )
    
    # because there are only two columns in this example you would probably 
    # want to add drop = FALSe e.g.
    # lapply(thelist, function(x) x[, -c(1), drop=FALSE ] )
    

    so from your loop value:

    remove_this_one <- 10
    lapply(thelist, function(x) x[ -c(remove_this_one) ,] )
    # remove row 10
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a named list of data.frame objects ( training_data ). Each data.frame object
I have a list object that contains nested lists, each includes a data frame.
I have a list of data.frame objects which i would like to row append
I have a list of core data objects each has a longitude and latitude
I have a list of xts objects. I'd like to get a data.frame with
My Ldt1 object has the following property. > is(Ldt1) [1] data.frame list oldClass vector
I have a list within a data frame (in this example, df$candpct ), and
I have a list of data that is a schedule. Each item has a
So I have a bunch of data frames in a list object. Frames are
So I have a bunch of data frames in a list object. Frames are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.