{"id":20812465,"url":"https://github.com/chandkund/time-series-forecasting","last_synced_at":"2026-04-07T21:31:50.713Z","repository":{"id":254121956,"uuid":"845537832","full_name":"chandkund/Time-Series-Forecasting","owner":"chandkund","description":"A time series forecasting project using the Airline Passenger dataset. This project leverages ARIMA modeling to predict future passenger numbers by analyzing historical trends and seasonality from 1949-1960. The results demonstrate effective forecasting for better business planning.","archived":false,"fork":false,"pushed_at":"2024-08-21T13:38:06.000Z","size":138,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-03T01:38:04.336Z","etag":null,"topics":["arima-forecasting","arima-model","data-science","numpy","pandas","python","seaborn"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chandkund.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-21T12:48:58.000Z","updated_at":"2024-08-21T13:38:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"0ec4dbb1-850a-43d2-8588-8f18af4931a6","html_url":"https://github.com/chandkund/Time-Series-Forecasting","commit_stats":null,"previous_names":["chandkund/time-series-forecasting"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chandkund/Time-Series-Forecasting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandkund%2FTime-Series-Forecasting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandkund%2FTime-Series-Forecasting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandkund%2FTime-Series-Forecasting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandkund%2FTime-Series-Forecasting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chandkund","download_url":"https://codeload.github.com/chandkund/Time-Series-Forecasting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandkund%2FTime-Series-Forecasting/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31530641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arima-forecasting","arima-model","data-science","numpy","pandas","python","seaborn"],"created_at":"2024-11-17T20:54:38.766Z","updated_at":"2026-04-07T21:31:50.683Z","avatar_url":"https://github.com/chandkund.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Time Series Forecasting Using Airline Passenger Data\n\nThis project focuses on forecasting future airline passenger numbers using historical data. The dataset records monthly passenger counts from 1949 to 1960, and the goal is to predict future values by analyzing trends and seasonality.\n\n## Project Overview\n\nThe main objectives of this project are:\n- **Data Exploration**: Analyzing the data to identify trends, seasonality, and patterns.\n- **Modeling**: Building an ARIMA model to forecast future passenger numbers.\n- **Evaluation**: Assessing the model's accuracy and visualizing the forecast.\n\n## Dataset\n\nThe dataset used in this project is the **Airline Passenger** dataset, which contains the following columns:\n- `Month`: Date of observation (in `YYYY-MM` format).\n- `Passengers`: Number of passengers (in thousands).\n\n### Data Source\nThe dataset is publicly available and can be found [here](https://github.com/jbrownlee/Datasets/blob/master/airline-passengers.csv).\n\n## Installation\n\nTo run this project, you need Python 3.x installed along with the following packages:\n\n```bash\npip install pandas numpy matplotlib statsmodels\n```\n\n## Usage\n\n1. **Clone the repository**:\n    ```bash\n    git clone https://github.com/yourusername/airline-passenger-forecasting.git\n    cd airline-passenger-forecasting\n    ```\n\n2. **Run the Jupyter Notebook**:\n    ```bash\n    jupyter notebook Time_Series_Forecasting.ipynb\n    ```\n\n## Methodology\n\n### 1. Data Exploration\n- Visualized the time series data to identify trends and seasonality.\n- Checked for stationarity using the Augmented Dickey-Fuller (ADF) test.\n\n### 2. Data Preprocessing\n- Applied log transformation and differencing to make the data stationary.\n\n### 3. Modeling\n- Built an ARIMA model to fit the stationary data.\n- Used the AIC (Akaike Information Criterion) to optimize the model parameters.\n\n### 4. Forecasting\n- Forecasted future passenger numbers for the next 1 months.\n- Visualized the forecast and compared it with the original data.\n\n## Results\n\nThe ARIMA model successfully captured the trend and seasonality in the data, providing accurate forecasts for future passenger numbers. These forecasts can be useful for airlines in planning operations and resources.\n\n## Conclusion\n\nThis project highlights the effectiveness of ARIMA models in time series forecasting. By understanding past trends and patterns, businesses can make informed decisions for future planning.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\n### Explanation:\n\n- **Project Overview**: Summarizes the goals and the dataset.\n- **Dataset**: Briefly describes the dataset and provides a link to the source.\n- **Installation**: Provides commands to install the necessary Python packages.\n- **Usage**: Instructions to clone the repository and run the notebook.\n- **Methodology**: Explains the steps taken in the project, from data exploration to forecasting.\n- **Results**: Summarizes the outcome of the model.\n- **Conclusion**: Highlights the significance of the project.\n- **License**: Mentions the project's license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandkund%2Ftime-series-forecasting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchandkund%2Ftime-series-forecasting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandkund%2Ftime-series-forecasting/lists"}