A time series chart, also called a times series graph, is an illustration of data points at successive time intervals.
Questions tagged [timeserieschart]
396 questions
0
votes
1 answer
Manipulate Chart Select Multiple Time-Series
I have created the plot below, so that I can easily compare multiple timeseries over different sections of time. I would next like to add a selector so that I can pick multiple timeseries to view on the plot at the same time, and uncheck the ones I…

ndderwerdo
- 85
- 8
0
votes
3 answers
Plot multiple time series in different panels using R
I am trying to plot time series monthly mean temperature data of 9 stations (A to I) putting in 9 different panels. But I am using zoo to keep the month-year format. My simple data set looks like below.
+--------+------+------+------+------+
| …

Doo
- 29
- 7
0
votes
0 answers
Polynomial Curvefit - ValueError: year is out of range python
I have a ValueError: year is out of range python for the below code for aiming to plot curve fit on time series.
Can anyone explain to me why I am getting this error?
x_values_formatted=[]
for i in x_values_edited:
…

serenade
- 359
- 2
- 5
- 13
0
votes
1 answer
Timestamp not accessed for Time series plot in C3.js
I am trying to plot a time series graph for a given data with two columns, first having a Time-stamp and second is the respective voltage value at that time. Accessing the data file through C3.js url method and also specifying the parse format for…

shoghi07
- 33
- 1
- 13
0
votes
1 answer
Matplotlib Plot time series with colored points Pandas (Python)
I'm trying to plot time series data where there are multiple points at each time. I want to have timeon the x axis, Amount on the y axis and then color each point by ID i.e. where ID = 344 they would all have the same color etc.
Below is example…

hselbie
- 1,749
- 9
- 24
- 40
0
votes
2 answers
Timeseries line-chart in dc.js - time Dimension not working
I'm a newbie to d3 and dc.js and am trying to make a timeseries chart of stock prices.
For some reason, I can't get my time Dimension to work. I have a feeling it has something to do with the way my dates are formatted, and I've tried experimenting…

TheBlake
- 267
- 1
- 5
- 12
0
votes
1 answer
How automatically to identify series when creating graph
Right now I have three columns of data that I would need on a graph. It's about the score of different countries on non-related evaluations. So there's a column for the year of the evaluation, the name of the country and the score it got.
Since…

Jn Coe
- 75
- 6
0
votes
0 answers
Weird Calendar error with JFreeChart
I "solved" the problem by using a TimeSeries instead of a DynamicTimeSeries since I realized I don't need the latter when my only purpose is to update the graph manually. Also, see here for further reference.
I am trying to make a linechart from a…

TschavaTschigger
- 1
- 1
0
votes
1 answer
"NA" results in Decomposition of Additive Time Series in R
I'm trying to understand my "decomposition of additive time series" graph. Here's my code:
dbs_discs <- ts(RC$Disconnects, frequency =12, start=c(2013,1))
discs_dbs <- decompose(dbs_discs)
plot(discs_dbs)
discs_dbs
and my results:
$trend
…

Jane Lee
- 1
- 4
0
votes
1 answer
Why the value of x-axis in time series plot in R shows 2012.0, 2013.0 rather than Jan 2012, etc?
I have create a time series matrix with code and output like below:
ts2 <-ts(cbind(LRC_3PDMUM, LRC_3PDMMS),frequency=12,start=c(2012,1))
ts2
LRC_3PDMUM LRC_3PDMMS
Jan 2012 0.029256 0.025904
Feb 2012 0.051945 0.055827
Mar 2012 …

manchester77
- 45
- 6
0
votes
1 answer
Insert minutes and hour on d3.js timeseries plot
I'm using this snippet to understand how d3.js works.
I changed this line of code -> var parseDate = d3.time.format('%H-%M-%e-%b-%y').parse;