You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/06/09 18:11:54 UTC

[GitHub] [arrow] pachadotdev opened a new pull request #10497: [R] Add bindings for pmin() and pmax()

pachadotdev opened a new pull request #10497:
URL: https://github.com/apache/arrow/pull/10497


   ``` r
   library(arrow)
   #> See arrow_info() for available features
   #> 
   #> Attaching package: 'arrow'
   #> The following object is masked from 'package:utils':
   #> 
   #>     timestamp
   library(dplyr)
   #> 
   #> Attaching package: 'dplyr'
   #> The following objects are masked from 'package:stats':
   #> 
   #>     filter, lag
   #> The following objects are masked from 'package:base':
   #> 
   #>     intersect, setdiff, setequal, union
   
   xy <- tibble::tibble(x = c(1:4,NA), y = c(5:9))
   
   xy %>%
     Table$create() %>%
     mutate(
       z = pmin(x, y)
     )
   #> Warning in any(na.m): coercing argument of type 'environment' to logical
   #> Warning: Expression pmin(x, y) not supported in Arrow; pulling data into R
   #> # A tibble: 5 x 3
   #>       x     y     z
   #>   <int> <int> <int>
   #> 1     1     5     1
   #> 2     2     6     2
   #> 3     3     7     3
   #> 4     4     8     4
   #> 5    NA     9    NA
   ```
   
   <sup>Created on 2021-06-09 by the [reprex package](https://reprex.tidyverse.org) (v2.0.0)</sup>
   


-- 
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



[GitHub] [arrow] github-actions[bot] commented on pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

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


   Revision: 5b9c726a125c50a9682264476432fb6a28523784
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-520](https://github.com/ursacomputing/crossbow/branches/all?query=actions-520)
   
   |Task|Status|
   |----|------|
   |test-r-rtools-35|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-520-github-test-r-rtools-35)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-520-github-test-r-rtools-35)|


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] github-actions[bot] commented on pull request #10497: [R] Add bindings for pmin() and pmax()

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


   <!--
     Licensed to the Apache Software Foundation (ASF) under one
     or more contributor license agreements.  See the NOTICE file
     distributed with this work for additional information
     regarding copyright ownership.  The ASF licenses this file
     to you under the Apache License, Version 2.0 (the
     "License"); you may not use this file except in compliance
     with the License.  You may obtain a copy of the License at
   
       http://www.apache.org/licenses/LICENSE-2.0
   
     Unless required by applicable law or agreed to in writing,
     software distributed under the License is distributed on an
     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.
   -->
   
   Thanks for opening a pull request!
   
   If this is not a [minor PR](https://github.com/apache/arrow/blob/master/CONTRIBUTING.md#Minor-Fixes). Could you open an issue for this pull request on JIRA? https://issues.apache.org/jira/browse/ARROW
   
   Opening JIRAs ahead of time contributes to the [Openness](http://theapacheway.com/open/#:~:text=Openness%20allows%20new%20users%20the,must%20happen%20in%20the%20open.) of the Apache Arrow project.
   
   Then could you also rename pull request title in the following format?
   
       ARROW-${JIRA_ID}: [${COMPONENT}] ${SUMMARY}
   
   or
   
       MINOR: [${COMPONENT}] ${SUMMARY}
   
   See also:
   
     * [Other pull requests](https://github.com/apache/arrow/pulls/)
     * [Contribution Guidelines - How to contribute patches](https://arrow.apache.org/docs/developers/contributing.html#how-to-contribute-patches)
   


-- 
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



[GitHub] [arrow] pachadotdev closed pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

Posted by GitBox <gi...@apache.org>.
pachadotdev closed pull request #10497:
URL: https://github.com/apache/arrow/pull/10497


   


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] github-actions[bot] commented on pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

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


   https://issues.apache.org/jira/browse/ARROW-12967


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] github-actions[bot] commented on pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

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


   Revision: 5b9c726a125c50a9682264476432fb6a28523784
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-520](https://github.com/ursacomputing/crossbow/branches/all?query=actions-520)
   
   |Task|Status|
   |----|------|
   |test-r-rtools-35|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-520-github-test-r-rtools-35)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-520-github-test-r-rtools-35)|


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] pachadotdev commented on pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

Posted by GitBox <gi...@apache.org>.
pachadotdev commented on pull request #10497:
URL: https://github.com/apache/arrow/pull/10497#issuecomment-869908859


   @github-actions crossbow submit test-r-rtools-35


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] pachadotdev closed pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

Posted by GitBox <gi...@apache.org>.
pachadotdev closed pull request #10497:
URL: https://github.com/apache/arrow/pull/10497


   


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow] pachadotdev commented on pull request #10497: ARROW-12967: [R] Add bindings for pmin() and pmax()

Posted by GitBox <gi...@apache.org>.
pachadotdev commented on pull request #10497:
URL: https://github.com/apache/arrow/pull/10497#issuecomment-869908859


   @github-actions crossbow submit test-r-rtools-35


-- 
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.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org