Skip to content

Commit 84a24f7

Browse files
Ajit Kumar SinghAjit Kumar Singh
Ajit Kumar Singh
authored and
Ajit Kumar Singh
committed
adding data info and TSA with CNNs
1 parent ca324a0 commit 84a24f7

7 files changed

+1339
-43
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Datasets_Info.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Datasets Summary
2+
3+
### 1. `airline_passengers.csv`
4+
- **Description**: This dataset contains monthly totals of international airline passengers from 1949 to 1960.
5+
- **Shape**: 144 rows, 2 columns.
6+
- **Columns**:
7+
- `Month`: The month of the record (YYYY-MM format).
8+
- `Thousands of Passengers`: The number of passengers (in thousands).
9+
10+
### 2. `Alcohol_Sales.csv`
11+
- **Description**: This dataset represents monthly alcohol sales.
12+
- **Shape**: 325 rows, 2 columns.
13+
- **Columns**:
14+
- `DATE`: The date of the record (YYYY-MM-DD format).
15+
- `S4248SM144NCEN`: The sales figure (numeric).
16+
17+
### 3. `DailyTotalFemaleBirths.csv`
18+
- **Description**: Daily total female births in California in 1959.
19+
- **Shape**: 365 rows, 2 columns.
20+
- **Columns**:
21+
- `Date`: The date of the record (MM/DD/YYYY format).
22+
- `Births`: The number of births (numeric).
23+
24+
### 4. `RestaurantVisitors.csv`
25+
- **Description**: This dataset tracks daily visitors to four different restaurants, along with whether the day was a holiday.
26+
- **Shape**: 517 rows, 9 columns.
27+
- **Columns**:
28+
- `date`: The date of the record (MM/DD/YYYY format).
29+
- `weekday`: The day of the week.
30+
- `holiday`: Indicator if the day is a holiday (1 for holiday, 0 otherwise).
31+
- `holiday_name`: Name of the holiday, if applicable.
32+
- `rest1` to `rest4`: Visitor count for each restaurant (numeric).
33+
- `total`: Total visitors across all restaurants (numeric).
34+
35+
36+
Each dataset can be used to illustrate different techniques and models in time series analysis and forecasting, ranging from basic methods to more advanced deep learning approaches. The variety in these datasets (from sales data to daily counts) provides a comprehensive resource for demonstrating different time series scenarios and methods.

Introduction_TSA.md

+1-40
Original file line numberDiff line numberDiff line change
@@ -521,43 +521,4 @@ The above capabilities of different models can also be combined, such as in the
521521

522522
- Hybrid models efficiently combine the diverse capabilities of different architectures.
523523

524-
---
525-
526-
527-
528-
529-
530-
531-
532-
533-
534-
535-
536-
537-
538-
539-
540-
541-
542-
543-
544-
545-
546-
547-
548-
549-
550-
551-
552-
553-
554-
555-
556-
557-
558-
559-
560-
561-
562-
563-
524+
---

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
## Contents
66

7+
- **[Datasets Info](https://github.com/ajitsingh98/Time-Series-Analysis-and-Forecasting-with-Python/blob/master/Introduction_TSA.md)**
8+
79
- **[Introduction to Time Series Analysis(Theory)](https://github.com/ajitsingh98/Time-Series-Analysis-and-Forecasting-with-Python/blob/master/Introduction_TSA.md)**
810

911
- Taxonomy of Time Series Analysis Domain
@@ -64,9 +66,9 @@
6466
- Seasonal Autoregressive Integrated Moving Averages(SARIMA)
6567
- Seasonal AutoRegressive Integrated Moving Average with EXogenous Variable.
6668

67-
- **[Time Series Forecasting with Deep Learning](https://github.com/ajitsingh98/Time-Series-Analysis-and-Forecasting-with-Python/blob/master/Time-Series-Forecasting-Deep-Learning.ipynb)**
69+
- **[Time Series Forecasting with LSTMs](#)**
6870

6971
- MLPs for time series forecasting(under construction)
70-
- LSTMs for time series forecasting
71-
- CNNs for time series forecasting(under construction)
72+
- [LSTMs for time series forecasting](https://github.com/ajitsingh98/Time-Series-Analysis-and-Forecasting-with-Python/blob/master/Time-Series-Forecasting-With-LSTMs.ipynb)
73+
- [CNNs for time series forecasting(under construction)](https://github.com/ajitsingh98/Time-Series-Analysis-and-Forecasting-with-Python/blob/master/Time-Series-Forecasting-With-LSTMs.ipynb)
7274
- Transformers for time series forecasting(under construction)

Time_Series_Classification.ipynb

Whitespace-only changes.

0 commit comments

Comments
 (0)