fix: use log1p(pct_change()) in to_log_returns for NaN-safe computation#282
Merged
timkpaine merged 1 commit intopmorissette:masterfrom Feb 28, 2026
Merged
Conversation
The previous implementation np.log(prices / prices.shift(1)) can produce RuntimeWarnings when prices.shift(1) introduces NaN values, since np.log(NaN) triggers a warning in some numpy configurations. Using np.log1p(prices.pct_change()) is mathematically equivalent: ln(p1/p0) = ln(1 + (p1-p0)/p0) = log1p(pct_change) This approach: - Avoids potential RuntimeWarnings from np.log(NaN) - Uses pandas' built-in pct_change() which handles NaN gracefully - Is numerically more stable for small returns (log1p avoids floating-point precision loss near zero) Fixes pmorissette#156
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Use
np.log1p(prices.pct_change())instead ofnp.log(prices / prices.shift(1))into_log_returns().Problem
The previous implementation can produce
RuntimeWarnings in certain numpy/pandas configurations becauseprices.shift(1)introduces a NaN for the first element, andnp.log(NaN)may trigger a warning.Fix
The two expressions are mathematically equivalent:
Benefits:
pct_change()handles NaN from shift gracefullylog1pavoids floating-point precision loss for small returnspct_change()instead of manual divisionFixes #156