Questions tagged [stacked-area-chart]

A stacked area chart is a type of chart (or graph) that is used to display graphically quantitive data.

A stacked area chart or stacked area graph displays graphically quantitive data. It is based on the line chart. The area between axis and line are commonly emphasized with colors, textures and hatchings.

Stacked area charts are used to represent cumulated totals using numbers or percentages over time.

209 questions
0
votes
1 answer

unexpected numeric constant in: "ggplot(

I am trying to plot trends in the age of university applicants. From various databases I use the data to build the following dataframe: > AgeGroup <- c("Year", "17","18","19","20", "21", "22", "23", "24", "25to29", "30to39", "40plus"); AgeGroup [1]…
Asiack
  • 47
  • 8
0
votes
1 answer

coreplot Xaxis start value iOS 7

I am developing an Area chart like the following and facing the following issue. curve shape is not looking proper, i need a smooth curve. X-axis values are Dynamic, it May start with 40 or May be 60 or any other value.how to calculate that…
hardikdevios
  • 1,779
  • 14
  • 33
0
votes
1 answer

ggplot2 stacked line plot acting funny

My stacked plot is going all wonky in the later years. Could someone look at my code and tell me where I went wrong? I thought my code was identical to the example code (both below). I am not very experienced with ggplot2 plot stacking so I might…
Francis Smart
  • 3,875
  • 6
  • 32
  • 58
0
votes
2 answers

Google charts: is it possible to display tooltips when hovering areas in stacked area chart?

I have a stacked area chart using google charts. An example is here: https://code.google.com/apis/ajax/playground/?type=visualization#area_chart The problem is, when I hover the cursor over an area, no tooltip is displayed. I need to hover the…
mirelon
  • 4,896
  • 6
  • 40
  • 70
0
votes
1 answer

nvd3 plotting multiple series on stacked area chart

I'm trying to create a stacked area chart using nvd3. Currently I'm creating the json data to be graphed and testing it against nvd3 live code section on nvd3 website, at the moment I've got this: [ { "values": [[1382812284000, 0],…
0
votes
1 answer

Plot CSV as stacked area

I have a CSV file which looks like this: Time ColA ColB ColC 0 1 10 5 1 3 7 15 2 0 8 9 3 3 4 5 4 4 5 6 5 10 23 4 I'd like to plot this as a stacked area chart, as follows (ignoring the X-axis…
Richard
  • 56,349
  • 34
  • 180
  • 251
0
votes
1 answer

A stacked bar graph in android in simplest way in android

i want to make a stacked graph as shown below image in android without using AchartEngine
jigar
  • 1,571
  • 6
  • 23
  • 46
0
votes
1 answer

MATLAB: Stacking .figs

I'm currently working on a study about fuel consumption. I have multiple .fig files that shows the trend of fuel consumption in L/100 Km versus Time. I have multiple cases showing the behavior of the plot under different conditions, and I wan't to…
Erasmus
  • 427
  • 2
  • 10
  • 23
0
votes
1 answer

How would I go about making stacked area chart with overlapping areas?

I would like to make an area chart like this: with d3.js javascript library. Is this possible? I know it is possible to do this with the Google Visualization API, see this answered question
Ruut
  • 1,091
  • 1
  • 16
  • 29
0
votes
1 answer

Set ylim with stacked area plot

I am trying to do a stacked area plot in order to compare outcomes under three scenarios. ggplot(FIREP_All,aes(x = Time, y = Houses, fill=Risk_Class, group= Risk_Class))+ geom_line(aes(ymax=Houses), position="stack", colour='darkgrey')+…
mmann1123
  • 5,031
  • 7
  • 41
  • 49
0
votes
1 answer

How to make the edges of a graph of type Stacked Bar?

Make the edges on the series is simple, but on how to make the graph shown in Figure 2 I did not find any example. The code shown to follow generates the graph shown in Figure 1. I would like to find a way to get the one shown in Figure 2. Some of…
Antonio Musarra
  • 370
  • 1
  • 14
-1
votes
1 answer

Stacked area chart in R

I want to create a stacked area chart for the following data: And the data continues a bit further. I am using ggplot and tried with: Dates <- seq.Date(as.Date("2010-03-01"), Sys.Date(), "month") ggplot(output_2, aes(x = Dates, y = ??, fill = ??))…
-1
votes
2 answers

make a Stacked Area Graph In ggplot2

I know there are already some severel questions about this theme, but i still can't get mine to work. I have this data.frame of some Standard Deviation df_sd_ <- data.frame(data = c("Oct","Nov","Dec","Jan"), Rent =…
-3
votes
1 answer

how to create a long format table from multiple columns

I would like to know, how can I do long format table. this is what I have: and this is what I want if you are asking what I would like to do, it is for ggplot2 proportional stacked area chart. thank you very much
1 2 3
13
14