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 get structure of data frame in R

1 Answer

0 votes
df = data.frame(a = c(1, 3, 4, 7),
                b = c(12, 98, 87, 20),
                c = c(2, 4, 5, 9),
                d = c(13, 77, 50, 20),
                row.names = c('o', 'p', 's', 't'))
   
print(df)
   
str(df)
   

   
   
         
         
# run:
#
#   a  b c  d
# o 1 12 2 13
# p 3 98 4 77
# s 4 87 5 50
# t 7 20 9 20
# 'data.frame':	4 obs. of  4 variables:
#  $ a: num  1 3 4 7
#  $ b: num  12 98 87 20
#  $ c: num  2 4 5 9
#  $ d: num  13 77 50 20
#

 



answered Jul 11, 2021 by avibootz

Related questions

1 answer 221 views
1 answer 235 views
2 answers 252 views
1 answer 216 views
216 views asked Jul 7, 2021 by avibootz
1 answer 268 views
1 answer 266 views
266 views asked Jul 10, 2021 by avibootz
1 answer 238 views
238 views asked Jul 10, 2021 by avibootz
...