This repository was archived by the owner on May 7, 2026. It is now read-only.
Commit 8f490e6
authored
feat: pivot_table supports fill_value arg (#2257)
Thank you for opening a Pull Request! Before submitting your PR, there
are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose)
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> 🦕1 parent 20ab469 commit 8f490e6Copy full SHA for 8f490e6
4 files changed
+31-15Lines changed: 31 additions & 15 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- bigframes
- core/reshape
- tests/system/small
- third_party/bigframes_vendored/pandas/core
Expand file treeCollapse file tree
Open diff view settings
Collapse file
bigframes/core/reshape/pivot.py
Copy file name to clipboardExpand all lines: bigframes/core/reshape/pivot.py+2-3Lines changed: 2 additions & 3 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
71 | 71 | |
72 | 72 | |
73 | 73 | |
| 74 | + |
74 | 75 | |
| 76 | + |
75 | 77 | |
76 | 78 | |
77 | | - |
78 | | - |
79 | | - |
80 | 79 | |
81 | 80 | |
82 | 81 | |
|
Collapse file
+3-5Lines changed: 3 additions & 5 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
3486 | 3486 | |
3487 | 3487 | |
3488 | 3488 | |
3489 | | - |
3490 | | - |
3491 | | - |
3492 | | - |
3493 | 3489 | |
3494 | 3490 | |
3495 | 3491 | |
| ||
3549 | 3545 | |
3550 | 3546 | |
3551 | 3547 | |
| 3548 | + |
| 3549 | + |
3552 | 3550 | |
3553 | 3551 | |
3554 | 3552 | |
3555 | 3553 | |
3556 | 3554 | |
3557 | 3555 | |
3558 | 3556 | |
3559 | | - |
| 3557 | + |
3560 | 3558 | |
3561 | 3559 | |
3562 | 3560 | |
|
Collapse file
tests/system/small/test_dataframe.py
Copy file name to clipboardExpand all lines: tests/system/small/test_dataframe.py+22-7Lines changed: 22 additions & 7 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
3784 | 3784 | |
3785 | 3785 | |
3786 | 3786 | |
3787 | | - |
| 3787 | + |
3788 | 3788 | |
3789 | | - |
3790 | | - |
3791 | | - |
3792 | | - |
| 3789 | + |
| 3790 | + |
| 3791 | + |
| 3792 | + |
| 3793 | + |
| 3794 | + |
| 3795 | + |
| 3796 | + |
| 3797 | + |
| 3798 | + |
3793 | 3799 | |
3794 | 3800 | |
3795 | 3801 | |
| ||
3799 | 3805 | |
3800 | 3806 | |
3801 | 3807 | |
| 3808 | + |
3802 | 3809 | |
3803 | 3810 | |
3804 | | - |
| 3811 | + |
| 3812 | + |
| 3813 | + |
| 3814 | + |
| 3815 | + |
3805 | 3816 | |
3806 | 3817 | |
3807 | | - |
| 3818 | + |
| 3819 | + |
| 3820 | + |
| 3821 | + |
| 3822 | + |
3808 | 3823 | |
3809 | 3824 | |
3810 | 3825 | |
|
Collapse file
third_party/bigframes_vendored/pandas/core/frame.py
Copy file name to clipboardExpand all lines: third_party/bigframes_vendored/pandas/core/frame.py+4Lines changed: 4 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
6414 | 6414 | |
6415 | 6415 | |
6416 | 6416 | |
| 6417 | + |
| 6418 | + |
| 6419 | + |
| 6420 | + |
6417 | 6421 | |
6418 | 6422 | |
6419 | 6423 | |
|
0 commit comments