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 9315329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T02:20:12+00:00 2026-06-19T02:20:12+00:00

I want to use aggregate function on a date frame but sum one column

  • 0

I want to use aggregate function on a date frame but sum one column and take average of another column.

Here is an example data frame

Manager   Category  Amount  SqFt
Joe           Rent     150   500
Alice         Rent     250   700
Joe      Utilities      50   500
Alice    Utilities      75   700

I cannot do something like below. Is there an easy way to do it ?

Avg_CPSF=aggregate(cbind(Amount,SqFt)~Manager,data=aaa,FUN=c(sum,mean)

Eventually I need

Manager  Amount   SqFT
Joe       200      500
Alice     325      700

so that I can calculate Cost per Square Foot by doing Amount/SqFT

  • 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-19T02:20:13+00:00Added an answer on June 19, 2026 at 2:20 am

    There are several ways to do this. Here are some that I like (all assuming we’re starting with a data.frame named “mydf”):

    Using ave and unique

    unique(within(mydf, {
      Amount <- ave(Amount, Manager, FUN = sum)
      SqFt <- ave(SqFt, Manager, FUN = mean)
      rm(Category)
    }))
    #   Manager Amount SqFt
    # 1     Joe    200  500
    # 2   Alice    325  700
    

    Using data.table:

    library(data.table)
    DT <- data.table(mydf)
    DT[, list(Amount = sum(Amount), SqFt = mean(SqFt)), by = "Manager"]
    #    Manager Amount SqFt
    # 1:     Joe    200  500
    # 2:   Alice    325  700
    

    Using “sqldf”:

    library(sqldf)
    sqldf("select Manager, sum(Amount) `Amount`, 
          avg(SqFt) `SqFt` from mydf group by Manager")
    

    Using aggregate and merge:

    merge(aggregate(Amount ~ Manager, mydf, sum), 
          aggregate(SqFt ~ Manager, mydf, mean))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basic hiberate question here, I want to use the sum() aggregate function for a
I'm trying to use the aggregate function with cbind , but I must be
I am searching for a solution how to use the aggregate function to sum
I want use BYTE_ORDER macro in my Xcode project but i can't because i
I want use javascript setInterval function to achieve a box rotate animate effect, I
I want use JQuery mobile for the front-end of my mobile application, but I
I have looked into pivot but I think it requires an aggregate function which
I want to use CLR table-valued function in SQL Server 2008, which accesses a
I am trying to use R to aggregate rows to columns. Here is a
I'm trying to create new aggregate function in PostgreSQL to use instead of the

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.