Skip to content

Commit a17db4e

Browse files
committed
starting moviepy exploration
1 parent dfbc3a9 commit a17db4e

6 files changed

Lines changed: 59 additions & 0 deletions

File tree

4.92 MB
Binary file not shown.
3.8 MB
Binary file not shown.
3.33 MB
Binary file not shown.
3.32 MB
Binary file not shown.

numpy_mplib/mplib_intro.ipynb

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "9ba332e3-06a7-4fc6-a266-c8a3455f54f4",
6+
"metadata": {},
7+
"source": [
8+
"🔷 Matplotlib – Data Visualization\n",
9+
"Applications:\n",
10+
"\n",
11+
"Exploratory Data Analysis (EDA): Visualizing trends, outliers, and patterns.\n",
12+
"\n",
13+
"Reports & Dashboards: Generating plots for reports in finance, healthcare, marketing.\n",
14+
"\n",
15+
"Scientific Visualization: Graphing equations, simulations, experiment data.\n",
16+
"\n",
17+
"Education: Visual aids for teaching math, stats, and data concepts.\n",
18+
"\n",
19+
"Custom Plotting Tools: Used as a backend for other plotting libraries (e.g., Seaborn)."
20+
]
21+
},
322
{
423
"cell_type": "code",
524
"execution_count": 4,

numpy_mplib/numpy_into.ipynb

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "bb5690e3-b533-4029-bf75-6957e29b4296",
6+
"metadata": {},
7+
"source": [
8+
"🔷 NumPy – Numerical Computing\n",
9+
"\n",
10+
"Applications:\n",
11+
"\n",
12+
"Scientific Computing: Fast linear algebra, Fourier transforms, and random number generation.\n",
13+
"\n",
14+
"Machine Learning: Preprocessing large datasets and feeding them into models (e.g., with TensorFlow, PyTorch).\n",
15+
"\n",
16+
"Signal & Image Processing: Efficient pixel-level operations on arrays/images.\n",
17+
"\n",
18+
"Simulation: Physics, chemistry, and financial simulations using matrix ops.\n",
19+
"\n",
20+
"Robotics & Control Systems: State estimation, control matrices, Kalman filters."
21+
]
22+
},
23+
{
24+
"cell_type": "markdown",
25+
"id": "3c4bc4df-110c-41b1-900b-19be246e0cde",
26+
"metadata": {},
27+
"source": [
28+
"🔶 Pandas – Data Analysis & Manipulation\n",
29+
"\n",
30+
"Applications:\n",
31+
"\n",
32+
"Data Cleaning: Handling missing data, renaming, filtering, type conversion.\n",
33+
"\n",
34+
"Data Transformation: Grouping, aggregating, merging, pivoting datasets.\n",
35+
"\n",
36+
"Time Series Analysis: Working with timestamps, date-indexed data, rolling windows.\n",
37+
"\n",
38+
"Business Analytics: Sales data, financial reports, customer behavior insights.\n",
39+
"\n",
40+
"ETL Pipelines: Extract-Transform-Load in data engineering tasks.\n"
41+
]
42+
},
343
{
444
"cell_type": "code",
545
"execution_count": 2,

0 commit comments

Comments
 (0)