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

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

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to extract multiple columns from data frame in R

1 Answer

0 votes
df <- data.frame(a = c(1, 3, 9, 0),
                 b = c(12, 98, 90, 20),
                 c = c(2, 4, 6, 8),
                 row.names = c('o', 'p', 'q', 'r'))

print(df)

column = data.frame(df$b, df$c)

print(column)
    
    
    
      
      
# run:
#
#   a  b c
# o 1 12 2
# p 3 98 4
# q 9 90 6
# r 0 20 8
#   df.b df.c
# 1   12    2
# 2   98    4
# 3   90    6
# 4   20    8
# 

 



answered Jul 8, 2021 by avibootz

Related questions

1 answer 199 views
1 answer 240 views
1 answer 232 views
1 answer 259 views
1 answer 260 views
1 answer 317 views
1 answer 255 views
...