Tag

interpolation

0 views collected around this technical thread.

Model Perspective
Model Perspective
Sep 9, 2023 · Fundamentals

Cleaning, Interpolating, and Forecasting Yellow River Sediment Data with Python

This article walks through cleaning missing hydrological data, applying various interpolation techniques, visualizing water level, flow, and sediment concentration, decomposing the time series into trend, seasonal, and residual components, and using Prophet to forecast future river sediment levels.

ProphetPythondata cleaning
0 likes · 11 min read
Cleaning, Interpolating, and Forecasting Yellow River Sediment Data with Python
Model Perspective
Model Perspective
Nov 13, 2022 · Fundamentals

Mastering 1D Interpolation in Python with SciPy: Linear, Nearest, Quadratic, Cubic

Learn how to perform one-dimensional interpolation in Python using SciPy's interp1d function, explore various interpolation methods such as linear, nearest, quadratic, and cubic, and visualize the results with Matplotlib to compare their fitting behaviors on sample data.

Data VisualizationMatplotlibNumerical Methods
0 likes · 5 min read
Mastering 1D Interpolation in Python with SciPy: Linear, Nearest, Quadratic, Cubic
Model Perspective
Model Perspective
Jun 10, 2022 · Fundamentals

Exploring 1D Interpolation with SciPy: Linear, Nearest, Cubic & More

This article introduces the concept of interpolation for discrete data, demonstrates how to use SciPy's interp1d function with various methods (linear, nearest, nearest‑up, zero, quadratic, cubic), visualizes the resulting curves alongside the original points, and provides complete Python code for reproducing the plots.

Data VisualizationNumerical MethodsPython
0 likes · 5 min read
Exploring 1D Interpolation with SciPy: Linear, Nearest, Cubic & More
Architect
Architect
Dec 28, 2015 · Frontend Development

Creating a Smooth Train Animation with Interpolation in Frontend Development

This article explains how to create a smooth train animation on a web page by sampling track points, using linear interpolation for position and angle, and dynamically adjusting speed, with JavaScript code examples illustrating the implementation.

JavaScriptanimationcanvas
0 likes · 6 min read
Creating a Smooth Train Animation with Interpolation in Frontend Development