HyukjinKwon commented on a change in pull request #32835:
URL: https://github.com/apache/spark/pull/32835#discussion_r648791327
##########
File path: python/docs/source/development/ps_design.rst
##########
@@ -4,40 +4,40 @@ Design Principles
.. currentmodule:: pyspark.pandas
-This section outlines design principles guiding the Koalas project.
+This section outlines design principles guiding the pandas APIs on Spark.
Be Pythonic
-----------
-Koalas targets Python data scientists. We want to stick to the convention that
users are already familiar with as much as possible. Here are some examples:
+Pandas APIs on Spark targets Python data scientists. We want to stick to the
convention that users are already familiar with as much as possible. Here are
some examples:
-- Function names and parameters use snake_case, rather than CamelCase. This is
different from PySpark's design. For example, Koalas has `to_pandas()`, whereas
PySpark has `toPandas()` for converting a DataFrame into a pandas DataFrame. In
limited cases, to maintain compatibility with Spark, we also provide Spark's
variant as an alias.
+- Function names and parameters use snake_case, rather than CamelCase. This is
different from PySpark's design. For example, pandas APIs on Spark has
`to_pandas()`, whereas PySpark has `toPandas()` for converting a DataFrame into
a pandas DataFrame. In limited cases, to maintain compatibility with Spark, we
also provide Spark's variant as an alias.
Review comment:
```suggestion
- Function names and parameters use snake_case, rather than CamelCase. This
is different from PySpark's design. For example, pandas APIs on Spark have
`to_pandas()`, whereas PySpark has `toPandas()` for converting a DataFrame into
a pandas DataFrame. In limited cases, to maintain compatibility with Spark, we
also provide Spark's variant as an alias.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]