Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1011409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T09:13:47+00:00 2026-05-16T09:13:47+00:00

Greetings, I have three TS variables resembling something like the following: data <- read.csv(…)

  • 0

Greetings,

I have three TS variables resembling something like the following:

data <- read.csv(...)
dataA = zoo(data$valueA, data$date)
dataB = zoo(data$valueB, data$date)
dataC = zoo(data$valueC, data$date)

days = seq(start(dataA), end(dataA), "day")

dataAts = na.locf(merge(dataA, zoo(,days)))
dataBts = na.locf(merge(dataB, zoo(,days)))
dataCts = na.locf(merge(dataC, zoo(,days)))

I need to draw dataAts, dataBts and dataCts as a stacked area chart in R. I’ve tried to use plotrix, but I’m not proficient enough to get the matrix in the right form.

Please Note that dataAts, dataBts and dataCts are not already accumulated, so it is not just a matter of drawing the three of them in the correct order (unless you can come up with a way of summing them up on-the-fly).

Can anyone PLEASE help me?

Thanks in advance…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T09:13:48+00:00Added an answer on May 16, 2026 at 9:13 am

    How about something like this?

    library(zoo)
    library(ggplot2)
    
    data <- data.frame(date=Sys.Date()+1:30,
      valueA=runif(30), valueB=runif(30), valueC=runif(30))
    
    dataA = zoo(data$valueA, data$date)
    dataB = zoo(data$valueB, data$date)
    dataC = zoo(data$valueC, data$date)
    
    days = seq(start(dataA), end(dataA), "day")
    
    dataAts = na.locf(merge(dataA, zoo(,days)))
    dataBts = na.locf(merge(dataB, zoo(,days)))
    dataCts = na.locf(merge(dataC, zoo(,days)))
    
    dataABCts <- merge(dataAts,dataBts,dataCts)
    
    # EDIT: Change labels here
    colnames(dataABCts) <- c("stock1","stock2","stock3")
    
    stacked <- lapply(colnames(dataABCts),function(i) {
      data.frame(date=index(dataABCts),values=dataABCts[,i],ind=i)
    })
    stacked <- do.call(rbind,stacked)
    
    ggplot(stacked, aes(x=date, y=values)) + geom_area(aes(fill=ind))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Greetings! I have some XML like this: <Root> <AlphaSection> . . . </AlphaSection> <BetaSection>
Greetings! I have an XML value that I'd like to use as a boolean
Greetings, I have data stored on mysql with delimiter , in 1 table. I
Greetings! I have some XML like this: <Root> <MainSection> <SomeNode>Some Node Value</SomeNode> <SomeOtherNode>Some Other
Greetings all, I have some JSON code that looks like this: { playlist: [
Greetings, I have a control and list of variables and I want in the
Greetings: I have put together a RESTful web service in .NET 3.5 that takes
Greetings, I have a particular object which can be constructed from a file, as
Greetings. I have been looking at Literate Programming a bit now, and I do
Greetings! If I have XML such as this: <Root> <AlphaSection> . . . </AlphaSection>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.