Add budget tracker example#4
Open
beta-devin-ai-integration[bot] wants to merge 3 commits into
Open
Conversation
…on operators Co-Authored-By: albert.han@windsurf.com <albert.han@windsurf.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
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
Adds a new
examples/budget/example that builds a monthly budget tracker comparing budgeted vs. actual spending across 8 categories, with a summary table. This fills coverage gaps for library features not demonstrated in existing examples:el.sum— used to total budgeted/actual amounts and count over-budget categoriesel.if_— flags whether each category is at or over budget>=comparison operator — previously only>was shown (in the options example)Also demonstrates cross-frame references (
from_=budget_df),display_horizontally()on the summary, editable cells, and accounting-style currency formatting.Updates
examples/README.mdwith a description of the new example.Review & Testing Checklist for Human
over_budgetcolumn uses>=(not>), so categories where actual exactly equals budgeted are flagged as "over." Verify this is the desired semantics — e.g., Rent ($1500/$1500) and Savings ($500/$500) will showover_budget = 1.excelify-viewer --file-path examples/budget/main.pyto visually verify the layout, formatting, and that editable cells work as expected when values are changed.Notes