Time series forecasting is an important area of machine learning that is often neglected.
It is important because there are so many prediction problems that involve a time component. These problems are neglected because it is this time component that makes time series problems more difficult to handle.
In this post, you will discover time series forecasting.
After reading this post, you will know:
- Standard definitions of time series, time series analysis, and time series forecasting.
- The important components to consider in time series data.
- Examples of time series to make your understanding concrete.
Kick-start your project with my new book Time Series Forecasting With Python, including step-by-step tutorials and the Python source code files for all examples.
Let’s get started.

What is Time Series Forecasting?
Photo by Dennis Kleine, some rights reserved.
Time Series
A normal machine learning dataset is a collection of observations.
For example:
1 2 3 |
observation #1 observation #2 observation #3 |
Time does play a role in normal machine learning datasets.
Predictions are made for new data when the actual outcome may not be known until some future date. The future is being predicted, but all prior observations are almost always treated equally. Perhaps with some very minor temporal dynamics to overcome the idea of “concept drift” such as only using the last year of observations rather than all data available.
A time series dataset is different.
Time series adds an explicit order dependence between observations: a time dimension.
This additional dimension is both a constraint and a structure that provides a source of additional information.
A time series is a sequence of observations taken sequentially in time.
— Page 1, Time Series Analysis: Forecasting and Control.
For example:
1 2 3 |
Time #1, observation Time #2, observation Time #3, observation |
Describing vs. Predicting
We have different goals depending on whether we are interested in understanding a dataset or making predictions.
Understanding a dataset, called time series analysis, can help to make better predictions, but is not required and can result in a large technical investment in time and expertise not directly aligned with the desired outcome, which is forecasting the future.
In descriptive modeling, or time series analysis, a time series is modeled to determine its components in terms of seasonal patterns, trends, relation to external factors, and the like. … In contrast, time series forecasting uses the information in a time series (perhaps with additional information) to forecast future values of that series
— Page 18-19, Practical Time Series Forecasting with R: A Hands-On Guide.
Time Series Analysis
When using classical statistics, the primary concern is the analysis of time series.
Time series analysis involves developing models that best capture or describe an observed time series in order to understand the underlying causes. This field of study seeks the “why” behind a time series dataset.
This often involves making assumptions about the form of the data and decomposing the time series into constitution components.
The quality of a descriptive model is determined by how well it describes all available data and the interpretation it provides to better inform the problem domain.
The primary objective of time series analysis is to develop mathematical models that provide plausible descriptions from sample data
— Page 11, Time Series Analysis and Its Applications: With R Examples
Time Series Forecasting
Making predictions about the future is called extrapolation in the classical statistical handling of time series data.
More modern fields focus on the topic and refer to it as time series forecasting.
Forecasting involves taking models fit on historical data and using them to predict future observations.
Descriptive models can borrow for the future (i.e. to smooth or remove noise), they only seek to best describe the data.
An important distinction in forecasting is that the future is completely unavailable and must only be estimated from what has already happened.
The purpose of time series analysis is generally twofold: to understand or model the stochastic mechanisms that gives rise to an observed series and to predict or forecast the future values of a series based on the history of that series
— Page 1, Time Series Analysis: With Applications in R.
The skill of a time series forecasting model is determined by its performance at predicting the future. This is often at the expense of being able to explain why a specific prediction was made, confidence intervals and even better understanding the underlying causes behind the problem.
Stop learning Time Series Forecasting the slow way!
Take my free 7-day email course and discover how to get started (with sample code).
Click to sign-up and also get a free PDF Ebook version of the course.
Components of Time Series
Time series analysis provides a body of techniques to better understand a dataset.
Perhaps the most useful of these is the decomposition of a time series into 4 constituent parts:
- Level. The baseline value for the series if it were a straight line.
- Trend. The optional and often linear increasing or decreasing behavior of the series over time.
- Seasonality. The optional repeating patterns or cycles of behavior over time.
- Noise. The optional variability in the observations that cannot be explained by the model.
All time series have a level, most have noise, and the trend and seasonality are optional.
The main features of many time series are trends and seasonal variations … another important feature of most time series is that observations close together in time tend to be correlated (serially dependent)
— Page 2, Introductory Time Series with R
These constituent components can be thought to combine in some way to provide the observed time series. For example, they may be added together to form a model as follows:
1 |
y = level + trend + seasonality + noise |
Assumptions can be made about these components both in behavior and in how they are combined, which allows them to be modeled using traditional statistical methods.
These components may also be the most effective way to make predictions about future values, but not always.
In cases where these classical methods do not result in effective performance, these components may still be useful concepts, and even input to alternate methods.
Concerns of Forecasting
When forecasting, it is important to understand your goal.
Use the Socratic method and ask lots of questions to help zoom in on the specifics of your predictive modeling problem. For example:
- How much data do you have available and are you able to gather it all together? More data is often more helpful, offering greater opportunity for exploratory data analysis, model testing and tuning, and model fidelity.
- What is the time horizon of predictions that is required? Short, medium or long term? Shorter time horizons are often easier to predict with higher confidence.
- Can forecasts be updated frequently over time or must they be made once and remain static? Updating forecasts as new information becomes available often results in more accurate predictions.
- At what temporal frequency are forecasts required? Often forecasts can be made at a lower or higher frequencies, allowing you to harness down-sampling, and up-sampling of data, which in turn can offer benefits while modeling.
Time series data often requires cleaning, scaling, and even transformation.
For example:
- Frequency. Perhaps data is provided at a frequency that is too high to model or is unevenly spaced through time requiring resampling for use in some models.
- Outliers. Perhaps there are corrupt or extreme outlier values that need to be identified and handled.
- Missing. Perhaps there are gaps or missing data that need to be interpolated or imputed.
Often time series problems are real-time, continually providing new opportunities for prediction. This adds an honesty to time series forecasting that quickly flushes out bad assumptions, errors in modeling and all the other ways that we may be able to fool ourselves.
Examples of Time Series Forecasting
There is almost an endless supply of time series forecasting problems.
Below are 10 examples from a range of industries to make the notions of time series analysis and forecasting more concrete.
- Forecasting the corn yield in tons by state each year.
- Forecasting whether an EEG trace in seconds indicates a patient is having a seizure or not.
- Forecasting the closing price of a stock each day.
- Forecasting the birth rate at all hospitals in a city each year.
- Forecasting product sales in units sold each day for a store.
- Forecasting the number of passengers through a train station each day.
- Forecasting unemployment for a state each quarter.
- Forecasting utilization demand on a server each hour.
- Forecasting the size of the rabbit population in a state each breeding season.
- Forecasting the average price of gasoline in a city each day.
I expect that you will be able to relate one or more of these examples to your own time series forecasting problems that you would like to address.
Summary
In this post, you discovered time series forecasting.
Specifically, you learned:
- About time series data and the difference between time series analysis and time series forecasting.
- The constituent components that a time series may be decomposed into when performing an analysis.
- Examples of time series forecasting problems to make these ideas concrete.
Do you have any questions about time series forecasting or about this post?
Ask your questions in the comments below.
Hi Jason,
Is there a paper for this – Forecasting utilization demand on a server each hour? Would you be able to link it here?
-Amit
There may be Amit, you can search here: http://scholar.google.com
dear my friend
i’ve to greatly thank @JasonBtownlee for his useful information and code.
here is my time series prediction by bi-LSTM code,
http://www.mathworks.com/matlabcentral/fileexchange/69506-time-series-prediction
best wishes
Abolfazl Nejatian
Well done!
Each line represents one customer – the first column contains unique customer
identifier and the second column contains indices of the day when customer have visited the
mall. The day with index 1 is a Monday (e. g. 7th is a Sunday, 8th is again a Monday). Indices
are within a range of 1 to 1001 (which is equal to 143 full weeks). The task is to predict the first
day of the next visit (week 144). For example, if customer will visit mall on Wednesday, then
prediction should be equal to 3:
0: Customer will not visit on the next week 1: Monday
2: Tuesday
3: Wednesday
4: Thursday 5: Friday
6: Saturday 7: Sunday
Can you plz give a soluation on python
You can get started with time series forecasting here:
https://machinelearningmastery.mystagingwebsite.com/start-here/#timeseries
Hi Sunil, have you got a solution to the above your problem.
“Time series forecasting is an important area of machine learning that is often neglected.”
Time series analysis is an area in itself. Many time series analysts will be offended by this sentence. No pun intended.
Maybe, but in the realm of machine learning time series is just a subset for analyzing and forecasting. If this were another type of blog, not machinelearningmastery, then maybe take offense.
Thanks for the feedback. Indeed Leo, time series is neglected when discussing machine learning. It is left out of most books.
Thank you for this post. Interesting read.
Can LSTMs be used for time series prediction? What performance could one expect relative to other neuron models and architecture? (e.g. RNN, CNN)
Yes, LSTMs can be used for time series, but they can be tricky to configure.
I plan to do some large studies on LSTMs vs CNN and other methods in time series soon.
Have you done anything on LSTMs vs CNN and other methods in time series…. please let me know… I am eagerly waiting for it.
Yes, I have found LSTMs to be poor at time series forecasting.
HI Jason,
Very good post!
I am new to your blog and just come to this post. Since this reply is 2 years old, may I ask do you still hold this view: I have found LSTMs to be poor at time series forecasting?
Why I am asking is that I am in wireless telecom industry. Our team wish to explore topics such to forecast the number of users in a base station [a network device that connects your cell phone to the backend], or forecast the data volume in Mega bytes in a base station.
So far LSTM is our favorite candidate. Seeing your this reply, I am wondering if our team is on the right track.
Looking forward to your reply.
Yes. Vanilla LSTMs are poor at time sreies forecasting. I have a ton of results to show this. More here:
https://machinelearningmastery.mystagingwebsite.com/suitability-long-short-term-memory-networks-time-series-forecasting/
CNNs are often better. CNN+LSTM better again, and ConvLSTMs are very good. I cover these here:
https://machinelearningmastery.mystagingwebsite.com/deep-learning-for-time-series-forecasting/
Hi, Jason,
I’m also a new visitor in your blog. Firstly I want to thank for your sharing. And I want to ask you a question about whether the CNN/RNN/LSTM can be used as trajectory predictions (especially the moving targets) ?
At last, can we think of the trajectory as a time series?
Looking forward to your reply.
I don’t see why not. Perhaps try modeling a time series framing of the problem and see how you go?
I agree Jason, By its nature, LSTM always gives a different results (sometime not-acceptable at all !!!) on the same set of data with same Layers/Dropouts/etc. I tested LSTM with quite a small set of 8 numbers (of n*2 patter) to the large set of 550 weekly historical prices of gold…. every time I run the LSTM, I get different results!!!
Later, I found that BiDirectional LSTM is much better than all other flavors of LSTM.
Thanks for sharing!
Nowadays I see that MARS (actually “earth” in R) is the strongest algorithm to forecast time series data.
Thanks for the tip Kleyn. I can see why it would be powerful, it’s a great method.
Hi Jason,
I was wondering whether to specialize in time series or machine learning. What do you think which of these has a brighter future for someone interested in research in one of these two fields?
Anthony
Sorry, I am not in touch with academia any longer.
There are a lot of problems where machine learning can be helpful in industry and some of those problems are time series.
Very nice article Jason. Do you think time series data analysis is as important as the machine learning problems in the industry?
Yes I do Johno, there are many problems with time series and unfortunately, many ML practitioners are unaware of standard methods like ARIMA.
Do you have an introductory tutorial on time series analysis?
Hi Raphael,
I have many posts on time series, you can see them all here:
https://machinelearningmastery.mystagingwebsite.com/category/time-series/
Also, try the search feature at the top of the page.
Hi Jason,
Can you plz tell me from where I can find experiments like this “Forecasting the average price of gasoline in a city each day”?
Hi Pooja, I have not seen this specific example,
You could collect the data and create the models, perhaps starting with one city and one year of data, then scaling up from there.
Hello Jason,
How do I predict increase/decrease in gas price based on historical data of different years using forecasting in machine learning?
This post might help:
https://machinelearningmastery.mystagingwebsite.com/work-time-series-forecast-project/
Hi Jason
I want to do a study to compare which one is better when it comes to forecasting between time series models and machine learning models.
How can you advise me to go about this study?
This project might help as a template:
https://machinelearningmastery.mystagingwebsite.com/time-series-forecast-study-python-monthly-sales-french-champagne/
Hello Jason,
Do you have a tutorial on multi-input LSTM in keras?
There will be one on the blog soon.
Hello Jason,
I am a novice at this so forgive a potentially silly question.
If is have a set of time series data with an associated value
eg timestamp, value
where the value and possibly the time between certain values equates to an event, is it possible to use this knowledge to train the system so that when I run a model against an unprocessed data set I can detect the occurrence of the event in the second data set?
Hope this rambling makes sense.
Thank you
Nick
If I understand your problem description, then yes I believe so.
You will need to prepare your historical data with clear examples of event/no-event.
Thank you Jason, Would I need to use Analysis rather than forecasting ?
regards
Nick
You can call “better understanding your problem” analysis if you wish.
I just want to share a link about time series analysis which I found useful.
http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm
Thanks for sharing Dhineshkumar.
hi,Jason:
I have read your post “What Is Time Series Forecasting?” 。I know little about Time Series Forecasting before. So, I am confused after read this post. I wonder what is the difference between Time Series Forecasting and other ML problems ,such as regression, classification?
The addition of a time dimension which imposes an order dependence between observations.
This dependence must be respected in the classification/regression formulation of the problem.
Ok, I got it. I can always get inspiration from you, thanks again, Jason!
No problem.
Hi Jason,
After reading and working through some of your tutorials I´m not sure what the most promising strategy could be to classify a known set of time series data. I have multi feature time series data being labeled or classified (2 possible states).
When getting the data of a new time step I would like to classify whether it is state one or two. My first idea was to use a solution as shown in your pima-diabetes-tutorial because it looks more like an classification problem to me.
After going on reading through the different tutorials I found a lot stuff concerning time series prediction/forecast and the analysis of a time range within the time series – but my point is not looking into the future.
I think that my problem relates to something in-between, doesn´t it? Is there a tutorial you would expect to fit the best to this question or is the solution for this question covered by the different way´s of predicting time series data?
Regards,
Oliver.
I would suggest modeling it as sequence classificaiton, not too much unlike classifying a sequence of words in a movie review as positive or negative.
Try MLPs and LSTMs.
Jason – In this book did you use LSTM for time-series-forecasting in any of the chapters?
I have to use NN for time-series forecasting. Will this book help ?
My time series book focuses on linear models such as AR and ARIMA. No LSTMs.
Hello Jason,
I am working as a supply chain supervisor and i have been given the task of reducing inventory levels at many warehouses. Until now I am just taking the avg sales of previous months and based on this i am forecasting the next month’s sales. I take this data as a basis to maintain inventory levels but this method is proving to be inaccurate. Which is the best time series forecasting method suitable to forecast sales? Can you please provide the procedure to implement this method.
No one can recommend a best method to you, it is unknown/intractable. You will need to discover what works best for your specific data.
I would recommend starting right here:
https://machinelearningmastery.mystagingwebsite.com/start-here/#timeseries
Hello Jason, I’m working on a project for predicting a specific tournament. I have data consists of date (date of match), home_team (constant data because I’m predicting a specific team, let’s say it’s “teamA” for now), away_team (the opponent of “teamA”), win (status of teamA’s win, 1 being a win and 0 being a loss). The data has holes because this “teamA” doesn’t always participate in every tournament. Is this still valid data for time series? or is there a better method of predicting?
I would recommend modeling the problem using a rating algorithm. The Elo algorithm is a good place to start:
https://en.wikipedia.org/wiki/Elo_rating_system
Hello Jason, I have some question for you. If I use pregnant weight sequence to predict fetal weight, weight of pregnant belongs to time series, What kind of time series problems do these time-series problems belong to? Thanks!
Perhaps this post will help:
https://machinelearningmastery.mystagingwebsite.com/sequence-prediction/
Hello Jason, I’m working on a project for analysis EMG signals. I want ask that if I want to predict EMG signals, what kind of tools should be used(NAR or LSTM or something else)? Does deep neural network’s performance are better than normal neural network? Thanks
Perhaps start with an MLP and compare results to an LSTM.
Great article!
Judson Smith
Founder/CEO
Acclaimed Labs – Fully Automated Data Forecasting
Thanks.
Hi sir ,
i have some yearly time series data , to forecast coming years value ,and i m using neural network model. i m new learner in this feild
but the problem for me is how train the data such as how to convert into lags to make the ready appplying the model . i will be your thankful , waiting for your precious guidings
This tutorial will help prepare the lags:
https://machinelearningmastery.mystagingwebsite.com/convert-time-series-supervised-learning-problem-python/
Hi Jason,
Thanks for the excellent post, I am working on a project and I’m not sure it I need time series analysis or not – I am predicting a customers likelihood to purchase, right now this prediction is as of ‘now’ based on data from the previous day – I want to refine this further by predicting this value over 3 days, or 10 days – what would be the normal approach to do this? Does this make it time series analysis, or not?
Thanks for your advice,
Ben
Perhaps brainstorm a few different ways to frame the problem, then prototype each to discover what works well with your specific dataset?
If anyone is interested – we’ve just launched an automated time series forecasting platform leveraging deep learning. You can learn about the platform here: https://www.oneclick.ai/solutions/time-series/ and sign up for a free test account to kick the tires if interested.
Thanks for sharing Michael.
Hi Jason,
Thanks for the very informative blog.
I recently started working on a problem, In which it collects some environment variables (temperature, humidity,noise,co2)from the sensors in a building, and tries to predict the occupancy(number of people), By co-modelling with the other environmental variables.
Based on all the values of the environmental variables and number of people, I am detecting the Anomalies if occurs any.
I am looking this problem also as an example of time series forecasting. Could you please clarify.
Thanks
Yes, it could be a time series classification or time series classification problem.
This post might help:
https://machinelearningmastery.mystagingwebsite.com/how-to-predict-room-occupancy-based-on-environmental-factors/
Hi Jason,
I’ve a requirement of sales forecasting for a year to do it in R with machine learning . What is the best method of doing it. I’ve data of month wise sales with different dimensions (ex) region, customer & material wise . whether i have to pass data as a whole to train the model or combination of dimensions have to pass.
Kindly suggest me
This is a common question that I answer here:
https://machinelearningmastery.mystagingwebsite.com/faq/single-faq/do-you-have-material-on-time-series-in-r
I have been asked to forecast user consumption of a good in a particular geographic area on a month to month basis. I have no ML background. Do you feel that this sort of future forecasting is different enough from something like the stock market to make using ML a reasonable approach?
Hi Nate, I have some suggestions here that might help:
https://machinelearningmastery.mystagingwebsite.com/faq/single-faq/how-to-develop-forecast-models-for-multiple-sites
This might be a good place to get started:
https://machinelearningmastery.mystagingwebsite.com/start-here/#timeseries
Well I will give it a try but I don’t really see what is fundamentally different from trying to forecast consumption of a good vs trying to predict the stock market. I bring that up because you yourself feel that predicting the stock market is not a good use of your time and I don’t want to spend my time taking a new job if I am only going to spin my wheels. I guess the fact that you are linking means you find the problem to be of value?
I have no idea if your dataset is predictable, but you can find out really quickly if you fit some linear models and they out-perform a naive/persistence model.
E.g. you demonstrate that something is predictable, but if you fail you beat a naive forecast, you don’t demonstrate the inverse, that it’s not predictable. It’s simply not predictable yet, or not yet known to be unpredictable.
hi jason,
my question is time series prediction(problem) we can apply forecasting model. if my problem is time series classification ,can we apply forecasting model ? is that possible
Yes.
thanks a lot jason….is there any link for that
Yes, you can learn about time series classification here:
https://machinelearningmastery.mystagingwebsite.com/start-here/#deep_learning_time_series
Excellent job, Jason!
Always simple and direct to the point.
I wonder if you have any material on trend estimation.
Kind regards,
Luis Fabiano
Thanks.
Yes, right here:
https://machinelearningmastery.mystagingwebsite.com/time-series-trends-in-python/
Hi Jason,
Thanks for blog.
I want to find “Expected life time of a customer” in telecom.
What features help me to predict.
I have all transaction data (Voice,SMS,voucher,Data) and demographic details and audit trail details.
Could you tell me what date feature help me to find “Expected Life Time” of a customer … It will help me to calculate “CLV(customer Life Time value)”.
Perhaps try modeling it as a survival analysis?
https://en.wikipedia.org/wiki/Survival_analysis
can you post about ECG? are they considered time series too?
Thanks for the suggestion.
Hi Jason,
Thanks for the blog.
Is it possible to do forecasting with only 1 year data.
Perhaps try it and see?
Hi Jason
I find your blog very informative and it’s helping me to learn the subject.
For computer/network equipment failure prediction, which type of model is best suitable.
Thanks.
Perhaps try a suite of methods under this framework:
https://machinelearningmastery.mystagingwebsite.com/how-to-develop-a-skilful-time-series-forecasting-model/
Hi jason,
Firstly thank you for putting in tremendous effort into this blog. They are extremely helpful and informative. I have a question on cash balance forecasting.
Let’s say I have a bank’s data with the daily closing account balance of a customer for the last 3 years. Which model would you recommend for predicting the cash balance of the customer, given the variety of models like arima, exponential smoothening, prophet, tbats, or neural networks?
Also, how intuitive are neural networks in understanding the outputs if we were indeed to use them for the modeling?
Really looking forward to your advice on this! Thanks!
Thanks for your support.
I recommend testing a range of different framings of the problem and a suite of different modeling algorithms to see what works best for your specific dataset.
When model skill is the focus, you will have to give up model understanding.
At first, thank you for this awesome post! One of the best resources I’ve found on time series. It’s really a valuable Information present on the blog. Look forward to read the next post. Thanks a lot
You’re welcome.
Is classical time series forecasting methods are no longer robust to approximate the relationship between inputs and outputs in time series data?
No. It really depends on the dataset. Classical methods are better than most “ml/dl” methods on most univariate time series datasets.
So, what is the goal of using deep learning methods?
Deep learning methods can perform well on problems where classical methods fail or are challenging to use/configure.
E.g. complex univariate data. Multivariate data, long multi-step forecasts, Anomaly detection, etc.
There is no one best algorithm for all problems.
Exactly, I have same question. Someone suggested to use ARIMA based STATISTICAL models. Akaike Info Criterion punishes for complex models (LSTM), but there is paper says the counter.
https://www.researchgate.net/publication/330477082_A_Comparison_of_ARIMA_and_LSTM_in_Forecasting_Time_Series
I have used Triple Exponential smoothing and RNN, RNN was better. I have yet to appli SARIMAX. I will see.
Try grid searching ETS and SARIMAX. Confirm the comparison from LSTM and linear models is equilivient.
Someone suggested me that ARIMA based models (SARIMAX etc) perform better than LSTM/RNN?
What is your experience?
For univariate, linear models almost always do better.
It is my experience and this study confirms:
https://machinelearningmastery.mystagingwebsite.com/findings-comparing-classical-and-machine-learning-methods-for-time-series-forecasting/
hi, to train a model for time series prediction is it important to make the time equidistant first and then train it?
Good question, see this:
https://machinelearningmastery.mystagingwebsite.com/faq/single-faq/how-do-i-handle-discontiguous-time-series-data
Hi Jason,
Glad to know you.
I wish to develop a model to forecast Covid-19 transmission and deaths.
Guide me on which model fits best for the problem.
Lockdown came into effect in many countries. Please consider such external measures while you advise me.
You can fit an exponential function to forecast the number of cases.
Use the GROWTH function in excel.
hii jason,
Can you help me with this,How to approach a time series data with a change point.
How should we handle the model or approach in this case?
Thank you,
Perhaps test a suite of different models and discover what works best for your specific datset?
Hi Jason,
Should we remove trend seasonal effect before feeding it to the model ?
Should we provide order of differencing after differencing a series and use it in d of ARIMA or just feed the number what makes it stationary without differencing it ?
What is the difference between SARIMA and ARIMA?
Can you help me with these ?
When using SARIMA no, it will do it for you. When using ARIMA, yes it will not do it for you.
Dr.Jason,
Does Walmart kaggle problem come under time series ? if so why since the test data has the variables for the forecasting time scale also can’t we handle those with regression ?.
What is your view on it, please clear the doubt
https://www.kaggle.com/c/walmart-recruiting-store-sales-forecasting/overview
Perhaps ask the owner of the competition directly?
Sorry, I am not familiar with that problem.
Hello Jason
I want to forecast the growth of online marketing in an online marketing company.
Which time series module do you suggest I use please?
I recommend this framework:
https://machinelearningmastery.mystagingwebsite.com/how-to-develop-a-skilful-time-series-forecasting-model/
And these tutorials to get started:
https://machinelearningmastery.mystagingwebsite.com/start-here/#timeseries
Hye.. I’m a final year student.. I would like to ask anyone here who is expert in time series forecasting.. In forecasting, can variable time be as input variable? Any suggested book or article that can i related to? Please comment.. Really appreciate that????
Yes, see this:
https://machinelearningmastery.mystagingwebsite.com/time-series-forecasting-supervised-learning/
If we have past orders(few or 0 orders by month) and also usage(by month)-in separate datasets, how can I forecast new order volumes? Can ML or ANN help here or something else? either inde
Perhaps try prototyping a few models and discover what can be predicted reliably.
Hello, I’m a student and I’m new to time series analysis, and what you’re explaining helps me a lot. Do you have any idea what kind of model you would use to forecast economic growth over a 1 or 2 year horizon? I find a lot of articles about “nowcasting” but that’s not quite what I need. Thank you for your help.
I recommend testing a suite of different models and data preparation methods in order to discover what works best for your dataset:
https://machinelearningmastery.mystagingwebsite.com/how-to-develop-a-skilful-time-series-forecasting-model/
Hi Jason,
Very well explained post. A question is jumping up and down in my mind. The question is if every time-based event is eligible to be considered for time series analysis/forecasting just because the events repeats over the time? There are many factors behind the event, (but we don’t know them or we partially know them). Is it wise to only forecast based in only the result of the event without considering the probable factors? Is it possible to achieve a good model?
Regards,
Farshad
Thanks!
Yes, exactly. We are approximating the “system” that generated the series of events. It will probably never be as good as the true system itself, but we do our best.
I just love this site. The contents shared is great and easily understood.
Thanks!
hi, if we hv 100 products and everyday we will only sell 20 of them, which method would you recommend if we want to forecast(accurately) the most probable 20 products we will sell tomorrow?
which book of yours should we buy and learn for his?
p/s – the article we read would only predict 1 item
I recommend testing a suite of different algorithm in order to discover what works best for your dataset.
Perhaps you can model it as a prediction task per product? perhaps across products? Perhaps try modelling it as classification or regression and see what works well.
This process may help you get started:
https://machinelearningmastery.mystagingwebsite.com/start-here/#process
Can we apply time series forecasting on data where we want to predict fixed classes such as 0,1,2 or 3?
the other thing to note that all the features change abruptly, for example, feature ‘X1’ at time T1 is let’s say 100 and on-time T2 it could be 0.
Yes, that is called time series classification.
The complexity of the data may mean more advanced methods are required or that the problem is not predictable.
Hi Jason.
May be it was silly. Can we consider a dataset which contains a time component as time series dataset ?. I have a dataset which was collected from year 2012 to 2017, but some months of observations were missed. So can I consider it as time series dataset?
Sure, you can frame a problem any way you like. All that matters is that your predictions have good skill.
Thanks for sharing valuable stuff. Respected Jason! Can we add Fraud Detection as time series dataset, if we have only No.of months attributes in dataset.
Perhaps, it might be a time series classification task, e.g. is a fraud event predicted in the input sequence or not.
Hello Jason,
I’m a student who is very interested in game data analysis. Recently I’m looking for a model to predict the real-time win rate of certain team in a game (like StarCraft). I’m thinking about to use the data containing a lot of games(each of them is a time series) to predict a future game. This is the first time I’m dealing with time series problem, but most online tutorials are focusing on one time series only, do you have any idea how should I dealing problems with multiple-time-series?
Your help is really appreciated.
I would recommend starting with a rating system like elo or trueskill:
https://en.wikipedia.org/wiki/Rating_system
Hello Jason,
Thank you very much for the valuable contents. I was wondering how CNN we apply CNN to spatio-temporal datasets or what other techniques are suitable for spatio-temporal datasets?
You’re welcome.
You can use a CNN-LSTM:
https://machinelearningmastery.mystagingwebsite.com/cnn-long-short-term-memory-networks/
Hello, I am trying to implemend a predictive maintenance system in python that is for “describing” the current situation and trying to “forecast” a future state of a machine in an industry 4.0 environment (like normal warning or critical state). Is time series forecasting the thing i am looking for?
Yes, it might be a time series classification task, e.g. what is the state of the system at this time step, or was there an issue in this time interval.
Hi Jason:
I would like you to tell me, what algorithms are there to create forecast models for multivariate time series of the type multiple parallel input and multi-step output, but that work in REAL-TIME?
Thanks for your attention.
Perhaps test a suite of algorithms and discover what works well or best with your specific dataset.
Jason, I don’t know if I didn’t make myself understood with the question because I don’t understand your answer. Is it then that the real-time forecasting algorithms are not a specific group but just anyone that works for me in real time with my data?
Thanks for your attention
A model is fit on historical data and can then be used to make predictions in “real time” on new data.
If you mean “real time” as in real-time computing systems (RTC), then I cannot help you.
In effect, I was referring to forecasting models, not to real-time computing systems (RTC). And I think now you get me out of that doubt, because I came to think that it was some special group of algorithms that worked for real-time forecasts. Now I think I understand that any algorithm can be fitted to a historical dataset and used to make forecasts in real-time, although of course, I imagine that will depend on the data of the retraining time of the same model. I’m right?.
Thanks.
Correct.
Ok, thanks.
You’re welcome.
Hi Jason,
Your website is really beneficial and it is one of the best ML websites out there.
I have a question about multivariate time-series data, can we treat multivariate time-series data as record data by ignoring the temporal aspect? I want to do regression and predict the value of one of the features based on the values of the other features in every time step?
There might be the problem that the value of the target feature is influenced by the values of the other features in a previous time step and not the values of the current time step. Can that be the case?
Yes, you can do that. Indeed you should do that if you believe time shouldn’t play a role here.
hi my friend
it was so useful for me
so thanks.
Thanks
Thanks. if I want to forecast a time series dataset with probabilistic distribution output ( for example Normal distribution), what model must be chosen?
Hi Amir…the following resource may be of interest:
https://machinelearningmastery.mystagingwebsite.com/time-series-forecasting-python-mini-course/
Hi,
Thanks for this great blog. I have a dataset for Air Quality Index (AQI) where features are Air pollutants like O3, PM2.5, PM10 etc. I am forecasting the feature values and based on those forecasted values I have to calculate the future AQI. I am using LSTM (RNN concept) model for forecasting.
My training and validation results are great but when I go for forecasting the model behavior is very unpredictable. For initial few samples it forecast new values but after a few samples it just becomes a straight line (same values).
Any suggestions? Also suggest which model or hybrid model of LSTM will work better in case of AQI prediction which is a time series forecasting problem.
Hi Saad…The following resource is a great starting point:
https://machinelearningmastery.mystagingwebsite.com/get-the-most-out-of-lstms/
Also, you may wish to consider a CNN-LSTM model:
https://machinelearningmastery.mystagingwebsite.com/cnn-long-short-term-memory-networks/
Is Randomness and Causality component of time series forecasting?
Hi Loide…The following resource may be of interest:
https://machinelearningmastery.mystagingwebsite.com/how-to-get-started-with-deep-learning-for-time-series-forecasting-7-day-mini-course/