Questions tagged [timeserieschart]

A time series chart, also called a times series graph, is an illustration of data points at successive time intervals.

396 questions
3
votes
1 answer

Parsing Time Series Data using D3.js

It is time to ask for help. I have been studying D3.js for weeks and am just beginning to feel like I understand 10% of it (ha, ha, ha). I am trying to generate a very simple line graph. I am able to do this as long as the data is very simple, but…
WebFixItMan
  • 231
  • 2
  • 9
3
votes
1 answer

Time Series Plot Matrix

I have a question concerting R: I was trying to plot a set of daily time series commodity data in R with the package ggplot2 and ggfortify into a matrix. I am trying to have standardized values on each y axis and the dates 1/1/2007, 1/1/2008... on…
Lili Matic
  • 59
  • 4
3
votes
1 answer

ggplot time series plotting: group by dates

I would like to plot several time series on the same panel graph, instead of in separate panels. I took the below R code from another stackoverflow post. Please note how the 3 time series are in 3 different panels. How would I be able to layer the…
user3698046
  • 119
  • 2
  • 10
3
votes
1 answer

ggplot: conflict between date_breaks() and limits

I want to get the dates in the x axis every 3 months and thus use date_breaks("3 month"), but the periods start on 1/03 and want them to go 1/1, 1/4 etc. This is what I try: datos <- data.frame(fecha=…
user2955884
  • 405
  • 2
  • 11
3
votes
2 answers

plotting data for different days on a single HH:MM:SS axis

The DataFrame has timestamped data and I want to visually compare the daily temporal evolution of the data. If I groupby day and plot the graphs; they are obviously displaced horizontaly in time due to differences in their dates. I want to plot a…
awhan
  • 510
  • 6
  • 13
3
votes
1 answer

plot multiple xts objects superimposed with different scales using both vertical axes

I have two univariate time series that would like to plot in the same screen chart. The problem is that they have very different scales and therefore the chart becomes very difficult to interpret. How can I plot each series superimposed but each of…
nopeva
  • 1,583
  • 5
  • 22
  • 38
3
votes
3 answers

Drawing a multiline graph with ggplot2 from a zoo object

all. I read several previous message at stackoverflow, and went through the documentation of zoo and ggplot2 but didn't find any suitable answer. Say I have a zoo object called 'data'. The original data in the flat file are as follows:…
tagoma
  • 3,896
  • 4
  • 38
  • 57
2
votes
0 answers

TypeError: Event constructor: Argument 2 can't be converted to a dictionary

I can't set up a BarChart for real time using pondjs/react-timeseries-charts. I try to use Event class like in the example. When I set the constructor like, for instance: new Event( new Date(), 15 ); I get the error "TypeError: Event constructor:…
jaume
  • 493
  • 1
  • 7
  • 17
2
votes
1 answer

How to plot daily data as monthly averages (for separate years)

I am trying to plot a graph to represent a monthly river discharge dataset from 1980-01-01 to 2013-12-31. Please check out this graph The plan is to plot "Jan Feb Mar Apr May...Dec" as the x-axis and the discharge (m3/s) as the y-axis. The actual…
grace11
  • 75
  • 6
2
votes
1 answer

Assign colors to negative and positive values in R barplot

I'm trying to replicate a time series barplot figure of a climate index (NPO, specifically) where there are different colors for positive and negative values. I'm using a different index, so the values are different but the concept is the same. the…
2
votes
1 answer

How to show a Time Series chart by Date + Hour in Data Studio - only showing up as 12AM

I'm trying to have a time series chart show the number of sessions by date and hour for the last 30 days in Data Studio. When I set my Dimension to "Date", and select the "Date Hour" Type, it just gives me the 30 days, but rather than breaking it…
cpburke94
  • 467
  • 1
  • 6
  • 13
2
votes
2 answers

matrixProfiling not getting imported

I am trying to use the package 'matrixprofile'. I am getting the error even though I have installed a 'matrixprofile' in anaconda prompt. from matrixprofile import * mp = matrixProfile.stomp(df['y'].values, window) NameError: name 'matrixProfile'…
2
votes
1 answer

Spaghetti plot using ggplot in R?

I would like to produce a speghatii plot where i need to see days of the year on the x-axis and data on the y-axis for each Year. I would then want a separate year that had data for only 3 months (PCPNewData) to be plotted on the same figure but…
Hydro
  • 1,057
  • 12
  • 25
2
votes
0 answers

Is it possible to use ARIMA model for multi-index time series dataframe? (using Python)

This is the original form of the data: number category location created_on 2018-03-27 20:48:00 WEB34041280c PFAST United States of America 2018-03-22 15:25:00 WEB34011829c …
morelloking
  • 193
  • 1
  • 3
  • 11
2
votes
1 answer

Pandas grouping and resampling for a bar plot:

I have a dataframe that records concentrations for several different locations in different years, with a high temporal frequency (<1 hour). I am trying to make a bar/multibar plot showing mean concentrations, at different locations in different…