-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MINOR][DOCS] Replace DataFrame
with Dataset
in Javadoc.
#11675
[MINOR][DOCS] Replace DataFrame
with Dataset
in Javadoc.
#11675
Conversation
Hi, @liancheng . |
Test build #52996 has finished for PR 11675 at commit
|
@@ -66,7 +66,7 @@ | |||
* RowFactory.create(0, "Hi I heard about Spark", 3.0), | |||
* RowFactory.create(1, "I wish Java could use case classes", 4.0), | |||
* RowFactory.create(2, "Logistic regression models are neat", 4.0))); | |||
* DataFrame df = jsql.createDataFrame(rowRDD, schema); | |||
* Dataset<Row> dataset = jsql.createDataFrame(rowRDD, schema); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor thing, we usually use ds
instead of dataset
to name a temporary Dataset in example code. But it's OK here.
LGTM, merging to master. Thanks for fixing this! |
Oh, thank you, @liancheng ! |
## What changes were proposed in this pull request? SPARK-13817 (PR apache#11656) replaces `DataFrame` with `Dataset` from Java. This PR fixes the remaining broken links and sample Java code in `package-info.java`. As a result, it will update the following Javadoc. * http://spark.apache.org/docs/latest/api/java/org/apache/spark/ml/attribute/package-summary.html * http://spark.apache.org/docs/latest/api/java/org/apache/spark/ml/feature/package-summary.html ## How was this patch tested? Manual. Author: Dongjoon Hyun <[email protected]> Closes apache#11675 from dongjoon-hyun/replace_dataframe_with_dataset_in_javadoc.
## What changes were proposed in this pull request? SPARK-13817 (PR apache#11656) replaces `DataFrame` with `Dataset` from Java. This PR fixes the remaining broken links and sample Java code in `package-info.java`. As a result, it will update the following Javadoc. * http://spark.apache.org/docs/latest/api/java/org/apache/spark/ml/attribute/package-summary.html * http://spark.apache.org/docs/latest/api/java/org/apache/spark/ml/feature/package-summary.html ## How was this patch tested? Manual. Author: Dongjoon Hyun <[email protected]> Closes apache#11675 from dongjoon-hyun/replace_dataframe_with_dataset_in_javadoc.
What changes were proposed in this pull request?
SPARK-13817 (PR #11656) replaces
DataFrame
withDataset
from Java. This PR fixes the remaining broken links and sample Java code inpackage-info.java
. As a result, it will update the following Javadoc.How was this patch tested?
Manual.