diff --git a/CHANGELOG.md b/CHANGELOG.md index c6bd434c7ba..788080cdd0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -134,7 +134,7 @@ #### New Features -- Start of Public Preview of Snowpark pandas API. Refer to the [Snowpark pandas API Docs](https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas) for more details. +- Start of Public Preview of Snowpark pandas API. Refer to the [Snowpark pandas API Docs](https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas) for more details. ### Snowpark Local Testing Updates diff --git a/README.md b/README.md index 49cba38f1a4..6bf3563b662 100644 --- a/README.md +++ b/README.md @@ -167,8 +167,8 @@ Please refer to [CONTRIBUTING.md][contributing]. [Snowpark Python developer guide]: https://docs.snowflake.com/en/developer-guide/snowpark/python/index.html [Snowpark Python api references]: https://docs.snowflake.com/en/developer-guide/snowpark/reference/python/index.html -[Snowpark pandas developer guide]: https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas -[Snowpark pandas api references]: https://docs.snowflake.com/en/LIMITEDACCESS/snowpark-pandas-api/reference/index.html +[Snowpark pandas developer guide]: https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas +[Snowpark pandas api references]: https://docs.snowflake.com/developer-guide/snowpark/reference/python/latest/modin/index [snowpark]: https://www.snowflake.com/snowpark [sign up trial]: https://signup.snowflake.com [source code]: https://github.com/snowflakedb/snowpark-python diff --git a/src/snowflake/snowpark/dataframe.py b/src/snowflake/snowpark/dataframe.py index 7e4bc6aa43d..d2385e9104f 100644 --- a/src/snowflake/snowpark/dataframe.py +++ b/src/snowflake/snowpark/dataframe.py @@ -2211,7 +2211,7 @@ def join( You can reference to these randomly named columns using :meth:`Column.alias` (See the first usage in Examples). See Also: - - Usage notes for asof join: https://docs.snowflake.com/LIMITEDACCESS/asof-join#usage-notes + - Usage notes for asof join: https://docs.snowflake.com/sql-reference/constructs/asof-join#usage-notes Examples:: >>> from snowflake.snowpark.functions import col diff --git a/src/snowflake/snowpark/modin/plugin/__init__.py b/src/snowflake/snowpark/modin/plugin/__init__.py index 5991fe09d45..2f8d133c079 100644 --- a/src/snowflake/snowpark/modin/plugin/__init__.py +++ b/src/snowflake/snowpark/modin/plugin/__init__.py @@ -47,7 +47,7 @@ warnings.warn( "Snowpark pandas has been in Public Preview since 1.17.0." - + " See https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas for details.", # TODO: SNOW-1326280 update link + + " See https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas for details.", stacklevel=1, ) diff --git a/src/snowflake/snowpark/udaf.py b/src/snowflake/snowpark/udaf.py index e5795bb4d13..45522a281f3 100644 --- a/src/snowflake/snowpark/udaf.py +++ b/src/snowflake/snowpark/udaf.py @@ -108,7 +108,7 @@ def _create_udaf_expression(self, exprs: List[Expression]) -> SnowflakeUDF: class UDAFRegistration: """ Provides methods to register lambdas and functions as UDAFs in the Snowflake database. - For more information about Snowflake Python UDAFs, see `Python UDAFs `__. + For more information about Snowflake Python UDAFs, see `Python UDAFs `__. :attr:`session.udaf ` returns an object of this class. You can use this object to register UDAFs that you plan to use in the current session or