Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8287965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:10:46+00:00 2026-06-08T12:10:46+00:00

I would like to use R to create a new column in my dataset

  • 0

I would like to use R to create a new column in my dataset that includes a maximum for each unique group. My data look like this:

group<-c("A","A","A","A","A","B","B","C","C","C")
replicate<-c(1,2,3,4,5,1,2,1,2,3)
x<-data.frame(cbind(group,replicate))

I’d like to create the third column as shown below – the maximum for each group.

group   replicate max.per.group
A       1         5       
A       2         5
A       3         5
A       4         5
A       5         5
B       1         2
B       2         2
C       1         3
C       2         3
C       3         3
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T12:10:47+00:00Added an answer on June 8, 2026 at 12:10 pm

    Try

    # This is how you create your data.frame
    group<-c("A","A","A","A","A","B","B","C","C","C")
    replicate<-c(1,2,3,4,5,1,2,1,2,3)
    x<-data.frame(group,replicate) # here you don't need c()
    
    # Here's my solution    
    Max <- tapply(x$replicate, x$group,max)
    data.frame(x, max.per.group=rep(Max, table(x$group)))
     group replicate max.per.group
    1      A         1             5
    2      A         2             5
    3      A         3             5
    4      A         4             5
    5      A         5             5
    6      B         1             2
    7      B         2             2
    8      C         1             3
    9      C         2             3
    10     C         3             3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create/use a system-wide independent universal 'counter object' that can be
We would like to use a cronjob to create a database backup. The backup
I would like to create a handlebars template and use a local helper for
I would like to create one EMF object and use it in various Resource
I would like to create a custom document library where I use the standard
I'm trying to use the header() function to create a redirect. I would like
I'm trying to use twitter bootstrap to create Facebook like tooltip layout. I would
I create a small CellTable with gwt. In that table I would like to
I would like to be able to use the created functions and objects I
I've created some custom UITableViewCells in a nib file and would like to use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.