Questions tagged [geom-col]

Part of the `ggplot2` library for R, `geom_col` is a chart type using columns to represent data.

169 questions
-1
votes
1 answer

how to use fill and color geom_col vs geom_point

I have a question regarding geom_point. ui <- fluidPage( titlePanel("Test"), sidebarLayout(sidebarPanel( selectInput( "selectedColX", "Select colum for X axis", choices = c("tooling1","tooling2"), selected =…
-1
votes
2 answers

R: How to aggregate and group by more than one column + chart in R

Let say I have this: Customer Server Size Cus_a Ser_1 3 Cus_a Ser_1 4 Cus_a Ser_2 2 Cus_b Ser_2 1 Cus b Ser_2 3 Cus_b Ser_2 2 Cus_c Ser_2 4 Cus c Ser_2 1 Cus_c Ser_3 4 I need to aggregate new data form that shows…
Yavor I
  • 77
  • 1
  • 6
-1
votes
1 answer

Stacked Bar Chart With No Fill?

I have a dataset all set up and am just trying to get a stacked bar chart to show. My X-Axis will show three bars: "left", "middle", and "right" My Y-Axis will be the "total_completed_epa" associated with each of the bars. The only problem is that…
Chives M
  • 15
  • 3
-1
votes
1 answer

changing font size in geom_col aes fill group names

I am creating a bar plot using aes(fill=dummy variable) so I have 4 bars: I am basically showing proportions for a 2x2 model - How do I change the font size of the names for the different groups? ggplot(summary2, aes(story, prop_agreement)) +…
1 2 3
11
12