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 1069757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:28:06+00:00 2026-05-16T20:28:06+00:00

I noticed that sometimes I get errors in my R scripts when I forget

  • 0

I noticed that sometimes I get errors in my R scripts when I forget checking whether the dataframe I’m working on is actually empty (has zero rows).

For example, when I used apply like this

apply(X=DF,MARGIN=1,FUN=function(row) !any(vec[ row[["start"]]:row[["end"]] ]))

and DF happened to be empty, I got an error about the subscripts.

Why is that? Aren’t empty dataframes valid? Why does apply() with MARGIN=1 even try to do anything when there are no rows in the dataframe? Do I really need to add a condition before each such apply to make sure the dataframe isn’t empty?

Thank you!

  • 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-05-16T20:28:06+00:00Added an answer on May 16, 2026 at 8:28 pm

    On a side note: apply always accesses the function you use at least once. If the input is a dataframe without any rows but with defined variables, it sends “FALSE” as an argument to the function. If the dataframe is completely empty, it sends a logical(0) to the function.

    > x <- data.frame(a=numeric(0))
    > str(x)
    'data.frame':   0 obs. of  1 variable:
     $ a: num 
    
    > y <- apply(x,MARGIN=1,FUN=function(x){print(x)})
    [1] FALSE
    
    > x <- data.frame()
    
    > str(x)
    'data.frame':   0 obs. of  0 variables
    
    > y <- apply(x,MARGIN=1,FUN=function(x){print(x)})
    logical(0)
    

    So as Joshua already told you, either control before the apply whether the dataframe has rows, or add a condition in the function within the apply.

    EDIT :
    This means you should take into account that length(x)==0 is not a very good check, you need to check whether either length(x==0) or !x is TRUE if both possibilities could arise :
    (Code taken from Joshua)

    apply(X=data.frame(),MARGIN=1,  # empty data.frame
      FUN=function(row) {
        if(length(row)==0 || !row) {return()}
        !any(vec[ row[["start"]]:row[["end"]] ])
      })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have noticed that with Delphi 2009, I often get strange errors when compiling,
I noticed today that auto-boxing can sometimes cause ambiguity in method overload resolution. The
I noticed that you can call Queue.Synchronize to get a thread-safe queue object, but
I noticed that my Designer.vb file of one of my forms has a lot
I sometimes notice programs that crash on my computer with the error: pure virtual
I noticed that Google maps is providing directions in my local language (hungarian) when
We noticed that lots of bugs in our software developed in C# (or Java)
i noticed that paypal displays a very different favicon, one that's not just a
I noticed that there is one change about ASP.NET Routing. I cannot understand why
Just noticed that the style of the navigation menu on windows.com is just what

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.