groupByandSumarize {shinyr}R 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")

[Package shinyr version 0.4.2 Index]