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

  • BigQuery DataFrames in Python
  • Cutting Data Pipeline Costs and Data Freshness Issues With Netflix Maestro and Apache Iceberg: A Practical Tutorial
  • From ETL to Lakeflow: Shifting to a Declarative Data Paradigm
  • Stop Loading Everything into Redshift: A Spectrum + Iceberg Pattern for Hybrid Analytics

Trending

  • The Middleware Gap in AI Agent Frameworks
  • Runtime Formula Evaluation With MVEL Library in Spring Boot
  • Zero-Downtime Deployments for Java Apps on Kubernetes
  • 11 Agentic Testing Tools to Know in 2026
  1. DZone
  2. Data Engineering
  3. Data
  4. Learn R: How to Create Data Frames Using Existing Data Frames

Learn R: How to Create Data Frames Using Existing Data Frames

In this article, we go over several commands developers and data scientists can use to create data frames using existing data frames.

By 
Ajitesh Kumar user avatar
Ajitesh Kumar
·
Jun. 27, 15 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
253.4K Views

Join the DZone community and get the full member experience.

Join For Free

this article represents commands that could be used to create data frames using existing data frames . please feel free to comment/suggest if i failed to mention one or more important points. following is a list of command summaries for creating data frames by extracting multiple columns from existing data frame based on the following criteria, a sample of which is provided later in this article:

  • column indices
  • column names
  • subset command
  • data.frame command

6 techniques for a extracting data frame from existing data frames

the following commands have been based on the diamonds data frame which is loaded as part of loading the ggplot2 library.


head_diamonds

the following code shows how the diamonds data frame looks:

#1: create data frame with selected columns using column indices
# displays column carat, cut, depth
dfnew1 <- diamonds[,c(1,2,5)]

#2: create a data frame with the selected columns using column indices with sequences
# displays column carat, cut, color, depth, price, x
dfnew2 <- diamonds[, c(1:3, 5, 7:8)]

#3: create a data frame with selected columns using the data.frame command
# displays column carat, cut, color
dfnew3 <- data.frame(diamonds$carat, diamonds$cut, diamonds$color)
names(dfnew3) <- c("carat", "cut", "color")

#4: create a data frame using the selected columns and column names
# displays column carat, depth, price
dfnew4 <- diamonds[,c("carat", "depth", "price")]

#5: create a data frame using the subset command and column names
# displays column color, carat, price
dfnew5 <- subset(diamonds, select=c("color", "carat", "price"))

#6: create a data frame using the subset command and column indices
# displays column carat, cut, color, depth
dfnew6 <- subset(diamonds, select=c(1:3, 5))
Data (computing) Frame (networking) R (programming language)

Opinions expressed by DZone contributors are their own.

Related

  • BigQuery DataFrames in Python
  • Cutting Data Pipeline Costs and Data Freshness Issues With Netflix Maestro and Apache Iceberg: A Practical Tutorial
  • From ETL to Lakeflow: Shifting to a Declarative Data Paradigm
  • Stop Loading Everything into Redshift: A Spectrum + Iceberg Pattern for Hybrid Analytics

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