You can't really summarize characters like letters (such as Z), so I assume you mean grouped summary data like this:
# Create data frame:
A <- c(1,2,3)
B <- c(1,2,3)
C <- c(1,2,3)
D <- c("x", "y", "z")
letters <- data.frame(A,B,C,D)
# Load library for summarizing values:
library(dplyr)
# Summarize and group by specific vector:
letters %>%
group_by(D) %>%
summarize(Min_A = min(A),
Max_B = max(B),
Sum_C = sum(C))
Which gives you this:
D Min_A Max_B Sum_C
<chr> <dbl> <dbl> <dbl>
1 x 1 1 1
2 y 2 2 2
3 z 3 3 3
Otherwise if you just mean all the descriptives (min, max, etc.):
# Ungrouped:
letters %>%
summarize(Min_A = min(A),
Max_B = max(B),
Sum_C = sum(C))
Which gives you:
Min_A Max_B Sum_C
1 1 3 6
Alternatively you can name it like this:
# Named Ungrouped:
zdata <- letters %>%
summarize(Min = min(A),
Max = max(B),
Sum = sum(C))
rownames(zdata) <- "Max"
zdata
Which gives you this:
Min Max Sum
Max 1 3 6
Not entirely sure why you want the max label for the rows, but this would achieve both your aims I think. There are many functions like this within dplyr. You can get a background on these functions in a book called R for Data Science!