You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/06/29 00:38:01 UTC

[GitHub] [spark] ozancicek opened a new pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

ozancicek opened a new pull request #24939:
URL: https://github.com/apache/spark/pull/24939


   ## What changes were proposed in this pull request?
   
   Added support for arithmetic expressions, use of spark functions and registered udf's inside formula so that expressions like this work as intended in `RFormula`;
   
   `log(y) ~ a + pow(b, 2)`  ->  `log()` and `pow()` spark functions are used on `y` and `b`
   `I(y +b) ~ a + x` -> The label term is sum of `y` and `b`
   
   Udf's can also be used once they're registered:
   ```scala
     val registeredUdf = spark.udf.register("plusTwo", (x: Int) => (x + 2))
     val formula = new RFormula()
       .setFormula("plusTwo(y) ~ a + plusTwo(b)")
   
     val df = Seq((1, 4, 4), (2, 5, 6)).toDF("y", "a", "b")
     val model = formula.fit(df)
     model.transform(df).show()
   
   +---+---+---+---------+-----+
   |  y|  a|  b| features|label|
   +---+---+---+---------+-----+
   |  1|  4|  4|[4.0,6.0]|  3.0|
   |  2|  5|  6|[5.0,8.0]|  4.0|
   +---+---+---+---------+-----+
   
   ```
   Summary of changes:
   - Added `EvalExprParser` trait for parsing arithmetic expressions inside formula
   - Added `ExprSelector` transformer which adds columns to a dataframe using `expr` spark function
   - Add `ExprSelector` and `ColumnPruner` stages for parsed arithmetic expressions.
   
   The criteria for parsing a term as arithmetic expression is that it's inside 'I(' expression ')', or it's a function (function criteria is ascii chars + alphanumeric chars + '(' args ')' ). From parsed arithmetic expressions, features are generated using `expr` spark function, so anything that can be used with `expr` function should be valid. Due to many ways `expr` function can be used, whether the expression has a valid syntax or whether the function is defined or not is not checked, only parsing rule is balanced parentheses.
   
   ## How was this patch tested?
   
   Unit tests to RFormulaParserSuite and RFormulaSuite
   
   @srowen @felixcheung 


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650847383


   Can one of the admins verify this patch?


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] github-actions[bot] closed pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed pull request #24939:
URL: https://github.com/apache/spark/pull/24939


   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650847383


   Can one of the admins verify this patch?


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652423232






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] github-actions[bot] closed pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed pull request #24939:
URL: https://github.com/apache/spark/pull/24939


   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650849158






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652377764


   **[Test build #124775 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/124775/testReport)** for PR 24939 at commit [`c3d97a3`](https://github.com/apache/spark/commit/c3d97a351a04474a260ff6ae40909f366a8398cf).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650846613


   cc @mengxr and @ericl. cc @shivaram too.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650848843


   **[Test build #124615 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/124615/testReport)** for PR 24939 at commit [`c3d97a3`](https://github.com/apache/spark/commit/c3d97a351a04474a260ff6ae40909f366a8398cf).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652377764


   **[Test build #124775 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/124775/testReport)** for PR 24939 at commit [`c3d97a3`](https://github.com/apache/spark/commit/c3d97a351a04474a260ff6ae40909f366a8398cf).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650849158






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650977718


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/124615/
   Test FAILed.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-651102629


   retest this please


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652376807


   retest this please


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650977706


   Merged build finished. Test FAILed.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] github-actions[bot] closed pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed pull request #24939:
URL: https://github.com/apache/spark/pull/24939


   


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650847170


   ok to test


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650846878


   Can one of the admins verify this patch?


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650846878


   Can one of the admins verify this patch?


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650977706






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650847170


   ok to test


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650973563


   **[Test build #124615 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/124615/testReport)** for PR 24939 at commit [`c3d97a3`](https://github.com/apache/spark/commit/c3d97a351a04474a260ff6ae40909f366a8398cf).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652378425






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652423232






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] github-actions[bot] commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650654935


   We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable.
   If you'd like to revive this PR, please reopen it and ask a committer to remove the Stale tag!


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] HyukjinKwon commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650847537


   ok to test


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] AmplabJenkins removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-652378425






----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] SparkQA removed a comment on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-650848843


   **[Test build #124615 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/124615/testReport)** for PR 24939 at commit [`c3d97a3`](https://github.com/apache/spark/commit/c3d97a351a04474a260ff6ae40909f366a8398cf).


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] [spark] github-actions[bot] commented on pull request #24939: [SPARK-18569][ML][R] Support RFormula arithmetic, I() and spark functions

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on pull request #24939:
URL: https://github.com/apache/spark/pull/24939#issuecomment-706457759


   We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable.
   If you'd like to revive this PR, please reopen it and ask a committer to remove the Stale tag!


----------------------------------------------------------------
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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org