-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aalam-SNOW-1418500-add-side-effect-to-resolv…
…e_packages
- Loading branch information
Showing
35 changed files
with
1,751 additions
and
252 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
``pd.TimedeltaIndex`` supported APIs | ||
==================================== | ||
|
||
The following table is structured as follows: The first column contains the method name. | ||
The second column is a flag for whether or not there is an implementation in Snowpark for | ||
the method in the left column. | ||
|
||
.. note:: | ||
``Y`` stands for yes, i.e., supports distributed implementation, ``N`` stands for no and API simply errors out, | ||
``P`` stands for partial (meaning some parameters may not be supported yet), and ``D`` stands for defaults to single | ||
node pandas execution via UDF/Sproc. | ||
|
||
Attributes | ||
|
||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| TimedeltaIndex attribute | Snowpark implemented? (Y/N/P/D) | Notes for current implementation | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``days`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``seconds`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``microseconds`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``nanoseconds`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``components`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
| ``inferred_freq`` | N | | | ||
+-----------------------------+---------------------------------+----------------------------------------------------+ | ||
|
||
|
||
Methods | ||
|
||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| DataFrame method | Snowpark implemented? (Y/N/P/D) | Missing parameters | Notes for current implementation | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``as_unit`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``to_pytimedelta`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``round`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``floor`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``ceil`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ | ||
| ``mean`` | N | | | | ||
+-----------------------------+---------------------------------+----------------------------------+-------------------------------------------+ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,7 @@ Functions | |
array_min | ||
array_position | ||
array_prepend | ||
array_remove | ||
array_size | ||
array_slice | ||
array_sort | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.