DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Why Is SQL Knowledge Vital for Data Scientists? A Sneak Peek
  • Setup ActiveMQ Artemis on Windows
  • Frame Buffer Hashing for Visual Regression on Embedded Devices
  • From Compliance Pipes to Data Streams: Modernizing Healthcare EDI for Strategic Value

Trending

  • How to Submit a Post to DZone
  • Is the Data Warehouse Dead? 3 Patterns From Enterprise Architecture That Answer This Question
  • Good Data, Bad Metric: A Mutation Testing Pattern for Analytics Engineering
  • Why Your Test Automation Is Always Behind the Code And the Architecture That Fixes It
  1. DZone
  2. Data Engineering
  3. Databases
  4. Learn R: How to Extract Rows and Columns From Data Frame

Learn R: How to Extract Rows and Columns From Data Frame

This article represents command set in R programming language, which could be used to extract rows and columns from a given data frame.

By 
Ajitesh Kumar user avatar
Ajitesh Kumar
·
Dec. 08, 14 · Tutorial
Likes (5)
Comment
Save
Tweet
Share
1.1M Views

Join the DZone community and get the full member experience.

Join For Free

This article represents a command set in the R programming language, which can be used to extract rows and columns from a given data frame. When working on data analytics or data science projects, these commands come in handy in data cleaning activities. This article is meant for beginners/rookies getting started with R who want examples of extracting information from a data frame. Please feel free to comment/suggest if I missed mentioning one or more important points.

The following are the key points described later in this article:

  • Commands to extract rows and columns.
  • Command to extract a column as a data frame.
  • Command to extract an element.

Suppose you have a data frame, df, which is represented as follows. Below we've created a data frame consisting of three vectors that include information such as height, weight, and age.

df <- data.frame( c( 183, 85, 40), c( 175, 76, 35), c( 178, 79, 38 ))
names(df) <- c("Height", "Weight", "Age")

Commands to Extract Rows and Columns

The following represents different commands which could be used to extract one or more rows with one or more columns. Note that the output is extracted as a data frame. This could be checked using the class command.

# All Rows and All Columns
df[,]

# First row and all columns
df[1,]

# First two rows and all columns
df[1:2,]

# First and third row and all columns
df[ c(1,3), ]

# First Row and 2nd and third column
df[1, 2:3]

# First, Second Row and Second and Third COlumn
df[1:2, 2:3]

# Just First Column with All rows
df[, 1]

# First and Third Column with All rows
df[,c(1,3)]

Command to Extract a Column as a Data Frame

The following represents a command which can be used to extract a column as a data frame. If you use a command such as df[,1], the output will be a numeric vector (in this case). To get the output as a data frame, you would need to use something like below.

# First Column as data frame
as.data.frame( df[,1], drop=false)

Command to Extract an Element

The following represents a command which could be used to extract an element in a particular row and column. It is as simple as writing a row and a column number, such as the following:

# Element at 2nd row, third column
df[2,3]
Data science R (programming language) Extract Column (database) Frame (networking) Row (database) Command (computing)

Published at DZone with permission of Ajitesh Kumar. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Why Is SQL Knowledge Vital for Data Scientists? A Sneak Peek
  • Setup ActiveMQ Artemis on Windows
  • Frame Buffer Hashing for Visual Regression on Embedded Devices
  • From Compliance Pipes to Data Streams: Modernizing Healthcare EDI for Strategic Value

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook