Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,121 questions

55,995 answers

573 users

How to remove rows with all NA in data frame with R

1 Answer

0 votes
df = data.frame(a = c(1, 3, NA, NA),
                b = c(12, 98, NA, 20),
                c = c(2, 4, NA, 9),
                d = c(13, 77, NA, 20),
                row.names = c('o', 'p', 's', 't'))
 
print(df)
 
df = df[rowSums(is.na(df[ , 0:ncol(df)])) < ncol(df), ]
 
print(df)
 
 
 
       
       
# run:
#
#    a  b  c  d
# o  1 12  2 13
# p  3 98  4 77
# s NA NA NA NA
# t NA 20  9 20
#    a  b c  d
# o  1 12 2 13
# p  3 98 4 77
# t NA 20 9 20
#

 



answered Jul 9, 2021 by avibootz

Related questions

1 answer 303 views
1 answer 291 views
1 answer 314 views
1 answer 261 views
1 answer 246 views
1 answer 265 views
1 answer 295 views
295 views asked Jul 8, 2021 by avibootz
...