This repository was archived by the owner on May 7, 2026. It is now read-only.
Commit 91b6c24
authored
feat: add
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> 🦕df.bigquery pandas accessor (#2513)1 parent 5cf3788 commit 91b6c24Copy full SHA for 91b6c24
14 files changed
+430-17Lines changed: 430 additions & 17 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- bigframes
- bigquery/_operations
- extensions
- pandas
- docs
- reference
- user_guide
- notebooks/getting_started
- tests/unit
- core/compile/sqlglot
- snapshots/test_dataframe_accessor/test_sql_scalar
- extensions
- pandas
Expand file treeCollapse file tree
Open diff view settings
Collapse file
+3Lines changed: 3 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
32 | 32 | |
33 | 33 | |
34 | 34 | |
| 35 | + |
| 36 | + |
| 37 | + |
35 | 38 | |
36 | 39 | |
37 | 40 | |
|
Collapse file
bigframes/bigquery/_operations/sql.py
Copy file name to clipboardExpand all lines: bigframes/bigquery/_operations/sql.py+57-16Lines changed: 57 additions & 16 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
16 | 16 | |
17 | 17 | |
18 | 18 | |
19 | | - |
| 19 | + |
20 | 20 | |
21 | 21 | |
22 | 22 | |
23 | 23 | |
| 24 | + |
24 | 25 | |
25 | 26 | |
26 | 27 | |
27 | 28 | |
28 | 29 | |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | + |
29 | 39 | |
30 | 40 | |
31 | | - |
| 41 | + |
| 42 | + |
| 43 | + |
32 | 44 | |
33 | 45 | |
34 | 46 | |
| ||
37 | 49 | |
38 | 50 | |
39 | 51 | |
| 52 | + |
| 53 | + |
| 54 | + |
40 | 55 | |
41 | 56 | |
42 | 57 | |
| ||
45 | 60 | |
46 | 61 | |
47 | 62 | |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | + |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | + |
| 72 | + |
| 73 | + |
48 | 74 | |
49 | 75 | |
50 | 76 | |
51 | 77 | |
52 | | - |
| 78 | + |
| 79 | + |
| 80 | + |
53 | 81 | |
54 | 82 | |
| 83 | + |
| 84 | + |
| 85 | + |
55 | 86 | |
56 | 87 | |
57 | 88 | |
| ||
60 | 91 | |
61 | 92 | |
62 | 93 | |
| 94 | + |
| 95 | + |
| 96 | + |
| 97 | + |
| 98 | + |
| 99 | + |
63 | 100 | |
64 | 101 | |
65 | 102 | |
| 103 | + |
| 104 | + |
66 | 105 | |
67 | 106 | |
68 | 107 | |
69 | 108 | |
70 | 109 | |
71 | | - |
72 | | - |
73 | | - |
74 | | - |
75 | | - |
76 | | - |
77 | | - |
78 | | - |
79 | | - |
80 | | - |
81 | | - |
82 | | - |
| 110 | + |
| 111 | + |
| 112 | + |
| 113 | + |
| 114 | + |
| 115 | + |
| 116 | + |
| 117 | + |
| 118 | + |
| 119 | + |
| 120 | + |
| 121 | + |
| 122 | + |
| 123 | + |
83 | 124 | |
84 | 125 | |
85 | | - |
| 126 | + |
86 | 127 | |
87 | 128 | |
Collapse file
bigframes/extensions/__init__.py
Copy file name to clipboard+13Lines changed: 13 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
Collapse file
bigframes/extensions/pandas/__init__.py
Copy file name to clipboard+13Lines changed: 13 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
Collapse file
bigframes/extensions/pandas/dataframe_accessor.py
Copy file name to clipboard+67Lines changed: 67 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | + |
Collapse file
+4-1Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
280 | 280 | |
281 | 281 | |
282 | 282 | |
| 283 | + |
| 284 | + |
283 | 285 | |
284 | 286 | |
285 | 287 | |
| ||
388 | 390 | |
389 | 391 | |
390 | 392 | |
391 | | - |
| 393 | + |
| 394 | + |
392 | 395 | |
393 | 396 | |
394 | 397 | |
|
Collapse file
+10Lines changed: 10 additions & 0 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
19 | 19 | |
20 | 20 | |
21 | 21 | |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + |
22 | 32 | |
23 | 33 | |
24 | 34 | |
|
Collapse file
+1Lines changed: 1 addition & 0 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
18 | 18 | |
19 | 19 | |
20 | 20 | |
| 21 | + |
21 | 22 | |
22 | 23 | |
23 | 24 | |
|
0 commit comments