Questions tagged [stacked-bar-chart]

A stacked bar chart is a graphical representation of data where, for each categorical group, there are two or more bars colored to represent a particular grouping. The value is represented by the length of the bar segment.

247 questions
0
votes
0 answers

How do I create bar chart in cloudwatch?

I am new bae in AWS cloud watch, I don't know how to create bar chart in cloudwatch I'm searching on google i didn't find any relevant query or code to build a bar chart in AWS Cloudwatch.
0
votes
1 answer

How to merge independent vertical bars into single, merged horizontal bar in a bar graph using GGPlot2

Me and my project partner are trying to create one stacked, horizontal barchart from multiple vertical barcharts as illustrated on the right hand side of the second picture. As of now, we were able to flip our graphs to a horizontal state with the…
0
votes
1 answer

How to create a grouped stacked bar chart, not facets

I am trying to create a stacked bar graph with ggplot in which my X axis shows month number and Y axis the total count of each species on each month. I'd like to create stacked bars showing monthly counts of species over the years, therefore I would…
RGR_288
  • 51
  • 6
0
votes
0 answers

Rechart Stacked barchart How to add stroke to selected bar is stacked Barchart

I need to display stroke value on selected bar in stacked barchart. On selection of the specific bar the stroke value should come like a border and all other bars/cells in the bar should not have a border/s. Eg: This is what I was able to achive…
Bimzee
  • 1,138
  • 12
  • 15
0
votes
1 answer

Adding text (percentages) to grouped stacked bar chart in altair

I would like to add text (more specifically, percentages or actual values) to each category in my stacked grouped bar chart. Here's my code: bar = alt.Chart(df1).mark_bar().encode( x=alt.X('Week:N', title=None), y=alt.Y('sum(Net Gross…
0
votes
1 answer

Swipe or turn data for stacked bar chart in Matplotlib

I'm trying to create or generate some graphs in stacked bar I'm using this data: index 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 0 No 94 123 96 108 122 106.0 95.0 124 104 118 73 82 106 124 109 70 59 1 …
user16239103
0
votes
1 answer

Stacked bar chart with tags as Y-axis in Azure Devops not possible?

I try to make a stacked bar chart with Tags as Y-Asis, but does not seem possible, If I flip it and use tags as group by and state as y-axis it works. Weird, any way around this?
0
votes
1 answer

How to create a combination of stacked and grouped bar chart with chartjs?

i want to create a bar chart that would look like below: i tried creating a stacked bar chart with the documentation given on the website. https://www.chartjs.org/docs/latest/samples/bar/stacked.html but could not find a way to create a chart as…
0
votes
0 answers

Chartjs - Stacked Bar Chart with different dataset for each label

I have the following situation: I want to create a stacked bar chart with chart.js in order to display messages written in a room per user. Each label on the x-axis shall represent one room while each stack of the bar shall represent one user in the…
schwaluck
  • 115
  • 9
0
votes
1 answer

X axis edit for stacked histogram

I'm looking to sort a stacked graph as demonstrated here: How to plot multiple stacked histograms together in R? However I need the x axis not to be 'value' with numbers, but instead have groups like 'car' 'van' 'bike', with the stacked plots…
Giles
  • 167
  • 7
0
votes
1 answer

How to make a Non-Cumulative stacked bar chart in ggplot

If I have a data like this: df <- tibble::tribble( ~x, ~yvalue, ~variable, "a", 1, "red", "a", 2, "blue", "b", 1, "red", "b", 3, "blue", "b", 0, "blue" ) I want to make a chart like a stacked bar chart of values (not counts), but…
DataMonkey
  • 104
  • 7
0
votes
0 answers

plot dual axis stack pyramid bar chart (horizontal) in R

enter image description hereI need to show changes by status for four students by stacked bar plots (4 different indicators-listening, reading, writing, speaking points) with horizontal pyramid ("Pre status" in left and "Post status" in right of the…
0
votes
0 answers

Tableau Sorting Stacked Bar Chart

I am trying to create a stacked bar chart of different diseases. Each bar should contain the disease's respective year (4 bars per disease). However, I am getting the total disease count rather than the count by year. I created a "Choose a Disease"…
c200402
  • 153
  • 1
  • 10
0
votes
1 answer

Tableau Stacked Bar Chart Bar Colors

I am trying to create a stacked bar chart in Tableau. Each bar is colored as numerical (Red lowest value and blue highest value), but I want each column name to resemble a color instead. For example, the bar for hemolytic cum 2020 as red, 2021 as…
c200402
  • 153
  • 1
  • 10
0
votes
1 answer

Stacked AND Grouped horizontal bar plot in Python

I am trying to obtain a stacked and grouped horizontal bar plot in Python: female_numbers_2015 = [20882, 31322, 52204, 52205, 31322, 20881] female_numbers_2018 = [20882, 31322, 52204, 52205, 31322, 20881] male_numbers_2015 = [11352, 17080, 28380,…