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 Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
  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.

Ajitesh Kumar user avatar by
Ajitesh Kumar
CORE ·
Jun. 27, 15 · Tutorial
Like (2)
Save
Tweet
Share
249.97K 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.

Popular on DZone

  • Create a REST API in C# Using ChatGPT
  • Public Key and Private Key Pairs: Know the Technical Difference
  • How Chat GPT-3 Changed the Life of Young DevOps Engineers
  • Required Knowledge To Pass AWS Certified Solutions Architect — Professional Exam

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

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

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: