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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,803 answers

573 users

How to get element of 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)

elements = df[c(3), c(2)]
 
print(elements)
   
   
   
     
     
# run:
#
#   a  b c
# o 1 12 2
# p 3 98 4
# q 9 90 6
# r 0 20 8
# [1] 90
#

 





answered Jul 7, 2021 by avibootz

Related questions

1 answer 72 views
72 views asked Jul 11, 2021 by avibootz
1 answer 85 views
1 answer 89 views
2 answers 92 views
1 answer 65 views
...