-
- Downloads
[SPARK-12148][SPARKR] SparkR: rename DataFrame to SparkDataFrame
## What changes were proposed in this pull request? Changed class name defined in R from "DataFrame" to "SparkDataFrame". A popular package, S4Vector already defines "DataFrame" - this change is to avoid conflict. Aside from class name and API/roxygen2 references, SparkR APIs like `createDataFrame`, `as.DataFrame` are not changed (S4Vector does not define a "as.DataFrame"). Since in R, one would rarely reference type/class, this change should have minimal/almost-no impact to a SparkR user in terms of back compat. ## How was this patch tested? SparkR tests, manually loading S4Vector then SparkR package Author: felixcheung <felixcheung_m@hotmail.com> Closes #12621 from felixcheung/rdataframe.
Showing
- R/pkg/NAMESPACE 1 addition, 1 deletionR/pkg/NAMESPACE
- R/pkg/R/DataFrame.R 329 additions, 324 deletionsR/pkg/R/DataFrame.R
- R/pkg/R/RDD.R 2 additions, 2 deletionsR/pkg/R/RDD.R
- R/pkg/R/SQLContext.R 35 additions, 35 deletionsR/pkg/R/SQLContext.R
- R/pkg/R/column.R 3 additions, 3 deletionsR/pkg/R/column.R
- R/pkg/R/deserialize.R 1 addition, 1 deletionR/pkg/R/deserialize.R
- R/pkg/R/functions.R 1 addition, 1 deletionR/pkg/R/functions.R
- R/pkg/R/generics.R 1 addition, 1 deletionR/pkg/R/generics.R
- R/pkg/R/group.R 7 additions, 7 deletionsR/pkg/R/group.R
- R/pkg/R/mllib.R 19 additions, 19 deletionsR/pkg/R/mllib.R
- R/pkg/R/schema.R 3 additions, 3 deletionsR/pkg/R/schema.R
- R/pkg/R/stats.R 19 additions, 19 deletionsR/pkg/R/stats.R
- R/pkg/R/utils.R 1 addition, 1 deletionR/pkg/R/utils.R
- R/pkg/inst/tests/testthat/test_sparkSQL.R 51 additions, 51 deletionsR/pkg/inst/tests/testthat/test_sparkSQL.R
Loading
Please register or sign in to comment