SlideShare a Scribd company logo
UNIT 5:
REAL TIME DATA ANALYSIS
DR.V.S.PRAKASH | V BCA 1
TIME SERIES
Time series analysis is a crucial part of data analysis, and Python provides several tools and libraries for working
with time series data.
DR.V.S.PRAKASH | V BCA 2
Date and Time Data Types and Tools:
Datetime Module:
Python's standard library includes the datetime module, which provides classes for working with dates and
times. You can use the datetime class to represent both date and time information.
from datetime import datetime
now = datetime.now() # Current date and time
print(now)
Date and Time Objects:
The datetime module includes date and time classes that allow you to work with just the date or time portion.
DR.V.S.PRAKASH | V BCA 3
String to Datetime Conversion:
You can convert a string representing a date and time to a datetime object using the strptime method.
date_str = "2023-10-24"
datetime_obj = datetime.strptime(date_str, "%Y-%m-%d")
Datetime to String Conversion:
To convert a datetime object back to a string, you can use the strftime method.
formatted_date = datetime_obj.strftime("%Y-%m-%d")
DR.V.S.PRAKASH | V BCA 4
DR.V.S.PRAKASH | V BCA 5
DR.V.S.PRAKASH | V BCA 6
DR.V.S.PRAKASH | V BCA 7
TIME SERIES BASICS:
Time series data consists of data points collected or recorded at successive, equally spaced time intervals.
Common examples of time series data include stock prices, temperature measurements, and website traffic.
Here are some fundamental concepts and tools for working with time series data in Python:
Pandas: The Pandas library is a powerful tool for working with time series data. It provides data structures like
DataFrame and Series that are ideal for organizing and analyzing time series data.
import pandas as pd
time_series_data = pd.Series([10, 20, 30, 40], index=pd.date_range(start='2023-10-01', periods=4, freq='D')
DR.V.S.PRAKASH | V BCA 8
Time Resampling:
You can resample time series data to change the frequency of data points (e.g., from daily to monthly) using
Pandas' resample method.
Pandas dataframe.resample() function is primarily used for time series data.
A time series is a series of data points indexed (or listed or graphed) in time order. Most commonly, a time
series is a sequence taken at successive equally spaced points in time. It is a Convenience method for
frequency conversion and resampling of time series.
monthly_data = time_series_data.resample('M').mean()
Plotting Time Series Data:
Libraries like Matplotlib and Seaborn can be used to visualize time series data.
import matplotlib.pyplot as plt
time_series_data.plot()
plt.xlabel("Date")
plt.ylabel("Value")
plt.show()
DR.V.S.PRAKASH | V BCA 9
Time Series Analysis:
You can perform various time series analysis tasks, including trend analysis, seasonality detection, and
forecasting, using tools like Statsmodels and Scikit-learn.
from statsmodels.tsa.seasonal import seasonal_decompose
decomposition = seasonal_decompose(time_series_data)
trend = decomposition.trend
seasonal = decomposition.seasonal
Time series decomposition involves thinking of a series as a combination of level, trend, seasonality, and noise
noise components.
• Level: The average value in the series.
• Trend: The increasing or decreasing value in the series.
• Seasonality: The repeating short-term cycle in the series.
• Noise: The random variation in the series.
DR.V.S.PRAKASH | V BCA 10
INDEXING AND SELECTION:
Selecting by Index:
You can access specific elements in a time series using index labels.
import pandas as pd
time_series_data = pd.Series([10, 20, 30, 40], index=pd.date_range(start='2023-10-01', periods=4, freq='D'))
selected_data = time_series_data['2023-10-01']
Selecting by Slicing: Use slicing to select a range of data.
selected_range = time_series_data['2023-10-01':'2023-10-03']
Subsetting by Conditions:
You can subset time series data based on conditions using boolean indexing.
subset = time_series_data[time_series_data > 20]
DR.V.S.PRAKASH | V BCA 11
Date Ranges and Frequencies:
Date Ranges: You can create date ranges using Pandas' date_range function. This is useful for generating date
index for time series data.
date_range = pd.date_range(start='2023-10-01', end='2023-10-10', freq='D')
Frequencies: You can specify various frequencies when creating date ranges. Common frequencies include 'D'
(day), 'H' (hour), 'M' (month end), and more.
hourly_range = pd.date_range(start='2023-10-01', periods=24, freq='H')
monthly_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='M')
Shifting Data:
Shifting is a common operation when working with time series data, often used for calculating differences or
creating lag features.
Shift Data: You can shift the data forward or backward using the shift method.
shifted_data = time_series_data.shift(periods=1) # Shift data one period forward
Calculating Differences: To compute the difference between consecutive values, you can subtract the shifted
series.
DR.V.S.PRAKASH | V BCA 12
SHIFTING DATA:
Shifting data involves moving time series data forward or backward in time. This is useful for various time series
analysis tasks.
Shift Data: You can shift data using Pandas' shift method.
The simplest call should have an argument periods (It defaults to 1) and it represents the number of shifts for the
desired axis. And by default, it is shifting values vertically along the axis 0 . NaN will be filled for missing values
introduced as a result of the shifting.
import pandas as pd
# Shifting data one period forward
shifted_data = time_series_data.shift(periods=1)
# Shifting data two periods backward
shifted_data = time_series_data.shift(periods=-2)
Calculating Differences: Shifting is often used to calculate the differences between consecutive values.
# Calculate the difference between consecutive values
DR.V.S.PRAKASH | V BCA 13
Generating Date Ranges and Frequencies:
Pandas provides powerful tools for generating date ranges with different frequencies.
Date Ranges: Use the date_range function to create date ranges.
date_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='D') # Daily frequency
Frequencies: You can specify various frequencies such as 'D' (day), 'H' (hour), 'M' (month end), 'Y' (year end),
and more when creating date ranges.
hourly_range = pd.date_range(start='2023-01-01', periods=24, freq='H')
monthly_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='M')
DR.V.S.PRAKASH | V BCA 14
Time Zone Handling:
Pandas can handle time zones and convert between them.
Setting Time Zone:
time_series_data = time_series_data.tz_localize('UTC') # Set time zone to UTC
Converting Time Zones:
time_series_data = time_series_data.tz_convert('US/Eastern') # Convert to US Eastern Time
Quarterly Period Frequencies:
Quarterly periods can be generated with the "Q" frequency code.
quarterly_range = pd.period_range(start='2023Q1', end='2023Q4', freq='Q')
DR.V.S.PRAKASH | V BCA 15
TIME SERIES ANALYSIS
Time series analysis often involves various data manipulation tasks, including plotting, data munging,
splicing data from multiple sources, decile and quartile analysis, and more. Let's explore these concepts and
some sample applications in the context of time series analysis:
Time Series Plotting:
Plotting is crucial for visualizing time series data to identify patterns and trends.
import matplotlib.pyplot as plt
# Plot time series data
time_series_data.plot()
plt.xlabel("Date")
plt.ylabel("Value")
plt.title("Time Series Plot")
plt.show()
DR.V.S.PRAKASH | V BCA 16
Data Munging:
Data munging involves cleaning, transforming, and preparing data for analysis. In time series analysis, this might
include handling missing values, resampling, or dealing with outliers.
# Handling missing values
time_series_data = time_series_data.fillna(method='ffill')
# Resampling to a different frequency
resampled_data = time_series_data.resample('W').mean()
Splicing Together Data Sources:
In some cases, you may need to combine time series data from multiple sources.
import pandas as pd
# Concatenating data from multiple sources
combined_data = pd.concat([data_source1, data_source2])
Decile and Quartile Analysis:
Decile and quartile analysis helps you understand the distribution of data.
# Calculate quartiles
quartiles = time_series_data.quantile([0.25, 0.5, 0.75])
# Calculate deciles
deciles = time_series_data.quantile([i/10 for i in range(1, 10)])
DR.V.S.PRAKASH | V BCA 17
Sample Applications:
Stock Market Analysis: Analyzing stock price time series data for trends and predicting future stock prices.
Temperature Forecasting: Analyzing historical temperature data to forecast future weather conditions.
Demand Forecasting: Analyzing sales data to forecast future product demand.
Future Contract Rolling:
In financial time series analysis, rolling futures contracts is crucial to avoid jumps in time series data when
contracts expire.
# Rolling futures contracts in a DataFrame
rolled_data = contract_rolling_function(time_series_data, window=10)
Rolling Correlation and Linear Regression:
Rolling correlation and regression are used to understand how the relationship between two time series
changes over time.
# Calculate rolling correlation between two time series
rolling_corr = time_series_data1.rolling(window=30).corr(time_series_data2)
# Calculate rolling linear regression between two time series
rolling_regression = time_series_data1.rolling(window=30).apply(lambda x: your_lin
DR.V.S.PRAKASH | V BCA 18
DR.V.S.PRAKASH | V BCA 19
Data Munging:
Data munging is a more general term that encompasses various data preparation tasks, including
cleaning, structuring, and organizing data.
It often involves dealing with missing data, handling outliers, and addressing issues like data
format inconsistencies.
Data munging can also include tasks such as data loading, data extraction, and basic data
exploration.
It is a broader term that doesn't specify a particular methodology or approach.
Data Wrangling:
Data wrangling is a subset of data munging that specifically refers to the process of cleaning,
transforming, and structuring data for analysis.
Data wrangling typically involves tasks like filtering, aggregating, joining, and reshaping data to
create a dataset that is ready for analysis or machine learning.
It is often associated with data preparation in the context of data analysis and is more focused on
making data suitable for specific analytical tasks.

More Related Content

PDF
Introduction to Pandas and Time Series Analysis [Budapest BI Forum]
PDF
Introduction to Pandas and Time Series Analysis [PyCon DE]
PDF
Unit 5 Time series Data Analysis.pdf
PPTX
Unit-5 Time series data Analysis.pptx
PDF
Introduction to Data Analtics with Pandas [PyCon Cz]
PPT
Python Panda Library for python programming.ppt
PDF
Python pandas I .pdf gugugigg88iggigigih
PPTX
Python Library-Series.pptx
Introduction to Pandas and Time Series Analysis [Budapest BI Forum]
Introduction to Pandas and Time Series Analysis [PyCon DE]
Unit 5 Time series Data Analysis.pdf
Unit-5 Time series data Analysis.pptx
Introduction to Data Analtics with Pandas [PyCon Cz]
Python Panda Library for python programming.ppt
Python pandas I .pdf gugugigg88iggigigih
Python Library-Series.pptx

Similar to unit 5_Real time Data Analysis vsp.pptx (20)

PDF
Pandas in Python for Data Exploration .pdf
PPTX
Lesson 1 introduction_to_time_series
PDF
Time Series Analytics with Spark: Spark Summit East talk by Simon Ouellette
PPTX
Time series - Series Temporelles: Power Point File
PPTX
Meetup Junio Data Analysis with python 2018
PDF
XII - 2022-23 - IP - RAIPUR (CBSE FINAL EXAM).pdf
PDF
pandas - Python Data Analysis
DOCX
TIME SERIES ANALYSIS.docx
PPTX
Data-Analysis-and-Visualization-in-Python-1.pptx
PDF
Wes McKinney - Python for Data Analysis-O'Reilly Media (2012).pdf
ODP
Data analysis using python
PPTX
DataStructures in Pyhton Pandas and numpy.pptx
PDF
Lecture on Python Pandas for Decision Making
PDF
Download full ebook of Mastering Pandas Femi Anthony instant download pdf
PDF
Time Series Analysis: Theory and Practice
PDF
XII IP Ch 1 Python Pandas - I Series.pdf
PPTX
Unit 3_Numpy_Vsp.pptx
PDF
Data Analysis with Pandas CheatSheet .pdf
PDF
ACFrOgDHQC5OjIl5Q9jxVubx7Sot2XrlBki_kWu7QeD_CcOBLjkoUqIWzF_pIdWB9F91KupVVJdfR...
Pandas in Python for Data Exploration .pdf
Lesson 1 introduction_to_time_series
Time Series Analytics with Spark: Spark Summit East talk by Simon Ouellette
Time series - Series Temporelles: Power Point File
Meetup Junio Data Analysis with python 2018
XII - 2022-23 - IP - RAIPUR (CBSE FINAL EXAM).pdf
pandas - Python Data Analysis
TIME SERIES ANALYSIS.docx
Data-Analysis-and-Visualization-in-Python-1.pptx
Wes McKinney - Python for Data Analysis-O'Reilly Media (2012).pdf
Data analysis using python
DataStructures in Pyhton Pandas and numpy.pptx
Lecture on Python Pandas for Decision Making
Download full ebook of Mastering Pandas Femi Anthony instant download pdf
Time Series Analysis: Theory and Practice
XII IP Ch 1 Python Pandas - I Series.pdf
Unit 3_Numpy_Vsp.pptx
Data Analysis with Pandas CheatSheet .pdf
ACFrOgDHQC5OjIl5Q9jxVubx7Sot2XrlBki_kWu7QeD_CcOBLjkoUqIWzF_pIdWB9F91KupVVJdfR...
Ad

More from prakashvs7 (14)

PPTX
Python lambda.pptx
PPTX
Unit 4_Working with Graphs _python (2).pptx
PPTX
unit 4-1.pptx
PPT
unit 3.ppt
PDF
final Unit 1-1.pdf
DOCX
PCCF-UNIT 2-1 new.docx
PPTX
AI UNIT-4 Final (2).pptx
PPTX
AI UNIT-3 FINAL (1).pptx
PPTX
AI-UNIT 1 FINAL PPT (2).pptx
PPTX
DS-UNIT 3 FINAL.pptx
PPTX
DS - Unit 2 FINAL (2).pptx
PPTX
DS-UNIT 1 FINAL (2).pptx
PPT
Php unit i
PPTX
The process
Python lambda.pptx
Unit 4_Working with Graphs _python (2).pptx
unit 4-1.pptx
unit 3.ppt
final Unit 1-1.pdf
PCCF-UNIT 2-1 new.docx
AI UNIT-4 Final (2).pptx
AI UNIT-3 FINAL (1).pptx
AI-UNIT 1 FINAL PPT (2).pptx
DS-UNIT 3 FINAL.pptx
DS - Unit 2 FINAL (2).pptx
DS-UNIT 1 FINAL (2).pptx
Php unit i
The process
Ad

Recently uploaded (20)

PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Cell Types and Its function , kingdom of life
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Computing-Curriculum for Schools in Ghana
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Pharma ospi slides which help in ospi learning
PDF
RMMM.pdf make it easy to upload and study
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
Abdominal Access Techniques with Prof. Dr. R K Mishra
Cell Types and Its function , kingdom of life
Sports Quiz easy sports quiz sports quiz
Computing-Curriculum for Schools in Ghana
GDM (1) (1).pptx small presentation for students
Pharma ospi slides which help in ospi learning
RMMM.pdf make it easy to upload and study
Renaissance Architecture: A Journey from Faith to Humanism
human mycosis Human fungal infections are called human mycosis..pptx
Final Presentation General Medicine 03-08-2024.pptx
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Cell Structure & Organelles in detailed.
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
STATICS OF THE RIGID BODIES Hibbelers.pdf
Supply Chain Operations Speaking Notes -ICLT Program
Microbial diseases, their pathogenesis and prophylaxis
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
O7-L3 Supply Chain Operations - ICLT Program

unit 5_Real time Data Analysis vsp.pptx

  • 1. UNIT 5: REAL TIME DATA ANALYSIS DR.V.S.PRAKASH | V BCA 1
  • 2. TIME SERIES Time series analysis is a crucial part of data analysis, and Python provides several tools and libraries for working with time series data. DR.V.S.PRAKASH | V BCA 2
  • 3. Date and Time Data Types and Tools: Datetime Module: Python's standard library includes the datetime module, which provides classes for working with dates and times. You can use the datetime class to represent both date and time information. from datetime import datetime now = datetime.now() # Current date and time print(now) Date and Time Objects: The datetime module includes date and time classes that allow you to work with just the date or time portion. DR.V.S.PRAKASH | V BCA 3
  • 4. String to Datetime Conversion: You can convert a string representing a date and time to a datetime object using the strptime method. date_str = "2023-10-24" datetime_obj = datetime.strptime(date_str, "%Y-%m-%d") Datetime to String Conversion: To convert a datetime object back to a string, you can use the strftime method. formatted_date = datetime_obj.strftime("%Y-%m-%d") DR.V.S.PRAKASH | V BCA 4
  • 8. TIME SERIES BASICS: Time series data consists of data points collected or recorded at successive, equally spaced time intervals. Common examples of time series data include stock prices, temperature measurements, and website traffic. Here are some fundamental concepts and tools for working with time series data in Python: Pandas: The Pandas library is a powerful tool for working with time series data. It provides data structures like DataFrame and Series that are ideal for organizing and analyzing time series data. import pandas as pd time_series_data = pd.Series([10, 20, 30, 40], index=pd.date_range(start='2023-10-01', periods=4, freq='D') DR.V.S.PRAKASH | V BCA 8
  • 9. Time Resampling: You can resample time series data to change the frequency of data points (e.g., from daily to monthly) using Pandas' resample method. Pandas dataframe.resample() function is primarily used for time series data. A time series is a series of data points indexed (or listed or graphed) in time order. Most commonly, a time series is a sequence taken at successive equally spaced points in time. It is a Convenience method for frequency conversion and resampling of time series. monthly_data = time_series_data.resample('M').mean() Plotting Time Series Data: Libraries like Matplotlib and Seaborn can be used to visualize time series data. import matplotlib.pyplot as plt time_series_data.plot() plt.xlabel("Date") plt.ylabel("Value") plt.show() DR.V.S.PRAKASH | V BCA 9
  • 10. Time Series Analysis: You can perform various time series analysis tasks, including trend analysis, seasonality detection, and forecasting, using tools like Statsmodels and Scikit-learn. from statsmodels.tsa.seasonal import seasonal_decompose decomposition = seasonal_decompose(time_series_data) trend = decomposition.trend seasonal = decomposition.seasonal Time series decomposition involves thinking of a series as a combination of level, trend, seasonality, and noise noise components. • Level: The average value in the series. • Trend: The increasing or decreasing value in the series. • Seasonality: The repeating short-term cycle in the series. • Noise: The random variation in the series. DR.V.S.PRAKASH | V BCA 10
  • 11. INDEXING AND SELECTION: Selecting by Index: You can access specific elements in a time series using index labels. import pandas as pd time_series_data = pd.Series([10, 20, 30, 40], index=pd.date_range(start='2023-10-01', periods=4, freq='D')) selected_data = time_series_data['2023-10-01'] Selecting by Slicing: Use slicing to select a range of data. selected_range = time_series_data['2023-10-01':'2023-10-03'] Subsetting by Conditions: You can subset time series data based on conditions using boolean indexing. subset = time_series_data[time_series_data > 20] DR.V.S.PRAKASH | V BCA 11
  • 12. Date Ranges and Frequencies: Date Ranges: You can create date ranges using Pandas' date_range function. This is useful for generating date index for time series data. date_range = pd.date_range(start='2023-10-01', end='2023-10-10', freq='D') Frequencies: You can specify various frequencies when creating date ranges. Common frequencies include 'D' (day), 'H' (hour), 'M' (month end), and more. hourly_range = pd.date_range(start='2023-10-01', periods=24, freq='H') monthly_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='M') Shifting Data: Shifting is a common operation when working with time series data, often used for calculating differences or creating lag features. Shift Data: You can shift the data forward or backward using the shift method. shifted_data = time_series_data.shift(periods=1) # Shift data one period forward Calculating Differences: To compute the difference between consecutive values, you can subtract the shifted series. DR.V.S.PRAKASH | V BCA 12
  • 13. SHIFTING DATA: Shifting data involves moving time series data forward or backward in time. This is useful for various time series analysis tasks. Shift Data: You can shift data using Pandas' shift method. The simplest call should have an argument periods (It defaults to 1) and it represents the number of shifts for the desired axis. And by default, it is shifting values vertically along the axis 0 . NaN will be filled for missing values introduced as a result of the shifting. import pandas as pd # Shifting data one period forward shifted_data = time_series_data.shift(periods=1) # Shifting data two periods backward shifted_data = time_series_data.shift(periods=-2) Calculating Differences: Shifting is often used to calculate the differences between consecutive values. # Calculate the difference between consecutive values DR.V.S.PRAKASH | V BCA 13
  • 14. Generating Date Ranges and Frequencies: Pandas provides powerful tools for generating date ranges with different frequencies. Date Ranges: Use the date_range function to create date ranges. date_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='D') # Daily frequency Frequencies: You can specify various frequencies such as 'D' (day), 'H' (hour), 'M' (month end), 'Y' (year end), and more when creating date ranges. hourly_range = pd.date_range(start='2023-01-01', periods=24, freq='H') monthly_range = pd.date_range(start='2023-01-01', end='2023-12-31', freq='M') DR.V.S.PRAKASH | V BCA 14
  • 15. Time Zone Handling: Pandas can handle time zones and convert between them. Setting Time Zone: time_series_data = time_series_data.tz_localize('UTC') # Set time zone to UTC Converting Time Zones: time_series_data = time_series_data.tz_convert('US/Eastern') # Convert to US Eastern Time Quarterly Period Frequencies: Quarterly periods can be generated with the "Q" frequency code. quarterly_range = pd.period_range(start='2023Q1', end='2023Q4', freq='Q') DR.V.S.PRAKASH | V BCA 15
  • 16. TIME SERIES ANALYSIS Time series analysis often involves various data manipulation tasks, including plotting, data munging, splicing data from multiple sources, decile and quartile analysis, and more. Let's explore these concepts and some sample applications in the context of time series analysis: Time Series Plotting: Plotting is crucial for visualizing time series data to identify patterns and trends. import matplotlib.pyplot as plt # Plot time series data time_series_data.plot() plt.xlabel("Date") plt.ylabel("Value") plt.title("Time Series Plot") plt.show() DR.V.S.PRAKASH | V BCA 16
  • 17. Data Munging: Data munging involves cleaning, transforming, and preparing data for analysis. In time series analysis, this might include handling missing values, resampling, or dealing with outliers. # Handling missing values time_series_data = time_series_data.fillna(method='ffill') # Resampling to a different frequency resampled_data = time_series_data.resample('W').mean() Splicing Together Data Sources: In some cases, you may need to combine time series data from multiple sources. import pandas as pd # Concatenating data from multiple sources combined_data = pd.concat([data_source1, data_source2]) Decile and Quartile Analysis: Decile and quartile analysis helps you understand the distribution of data. # Calculate quartiles quartiles = time_series_data.quantile([0.25, 0.5, 0.75]) # Calculate deciles deciles = time_series_data.quantile([i/10 for i in range(1, 10)]) DR.V.S.PRAKASH | V BCA 17
  • 18. Sample Applications: Stock Market Analysis: Analyzing stock price time series data for trends and predicting future stock prices. Temperature Forecasting: Analyzing historical temperature data to forecast future weather conditions. Demand Forecasting: Analyzing sales data to forecast future product demand. Future Contract Rolling: In financial time series analysis, rolling futures contracts is crucial to avoid jumps in time series data when contracts expire. # Rolling futures contracts in a DataFrame rolled_data = contract_rolling_function(time_series_data, window=10) Rolling Correlation and Linear Regression: Rolling correlation and regression are used to understand how the relationship between two time series changes over time. # Calculate rolling correlation between two time series rolling_corr = time_series_data1.rolling(window=30).corr(time_series_data2) # Calculate rolling linear regression between two time series rolling_regression = time_series_data1.rolling(window=30).apply(lambda x: your_lin DR.V.S.PRAKASH | V BCA 18
  • 19. DR.V.S.PRAKASH | V BCA 19 Data Munging: Data munging is a more general term that encompasses various data preparation tasks, including cleaning, structuring, and organizing data. It often involves dealing with missing data, handling outliers, and addressing issues like data format inconsistencies. Data munging can also include tasks such as data loading, data extraction, and basic data exploration. It is a broader term that doesn't specify a particular methodology or approach. Data Wrangling: Data wrangling is a subset of data munging that specifically refers to the process of cleaning, transforming, and structuring data for analysis. Data wrangling typically involves tasks like filtering, aggregating, joining, and reshaping data to create a dataset that is ready for analysis or machine learning. It is often associated with data preparation in the context of data analysis and is more focused on making data suitable for specific analytical tasks.