groupByandSumarize: Group By And Summarize

View source: R/group_by_and_summarize.R

groupByandSumarizeR Documentation

Group By And Summarize

Description

Group by columns and summarize given data.

Usage

groupByandSumarize(df, grp_col, summarise_col, FUN = mean)

Arguments

df

data frame

grp_col

column name to group

summarise_col

column name to summarize

FUN

function to summarize

Details

groupByandSumarize

Value

summarized table

Author(s)

Jayachandra N

Examples

groupByandSumarize(mtcars, grp_col = c("am"), summarise_col = "hp",
FUN = "mean")

shinyr documentation built on April 4, 2025, 1:50 a.m.