Uh oh!
There was an error while loading. Please reload this page.
ARROW-3818: [R] Table$from_batches - #3562
Closed
romainfrancois wants to merge 3 commits into
Closed
Conversation
romainfrancois
commented
Feb 5, 2019
ContributorAuthor
library(arrow)
#> #> Attaching package: 'arrow'#> The following object is masked from 'package:utils':#> #> timestamp#> The following objects are masked from 'package:base':#> #> array, tableb<- record_batch(tibble::tibble(int=1:2, dbl= rnorm(2)))
tab<- table_from_batches(b,b,b)
tab#> arrow::Table
as_tibble(tab)
#> # A tibble: 6 x 2#> int dbl#> <int> <dbl>#> 1 1 -0.267 #> 2 2 -0.0270#> 3 1 -0.267 #> 4 2 -0.0270#> 5 1 -0.267 #> 6 2 -0.0270# this supports !!! splicing sobatches<- rep(list(b), 20L)
tab<- table_from_batches(!!!batches)
tab#> arrow::Table
as_tibble(tab)
#> # A tibble: 40 x 2#> int dbl#> <int> <dbl>#> 1 1 -0.267 #> 2 2 -0.0270#> 3 1 -0.267 #> 4 2 -0.0270#> 5 1 -0.267 #> 6 2 -0.0270#> 7 1 -0.267 #> 8 2 -0.0270#> 9 1 -0.267 #> 10 2 -0.0270#> # … with 30 more rowsCreated on 2019-02-05 by the reprex package (v0.2.1.9000) |
romainfrancois
commented
Feb 5, 2019
ContributorAuthor
I'm just not sure about the naming. In python the We could expose certain classes a first class citizens of the package if we really want the syntax |
romainfrancois
commented
Feb 7, 2019
ContributorAuthor
Actually #3565 is better because it does not need a separate |
xhochyforce-pushed
the
ARROW-3818/Table_from_batches
branch
from
February 8, 2019 21:23
123947e to
760accdComparexhochy
commented
Feb 8, 2019
Member
Rebased. |
romainfrancoisforce-pushed
the
ARROW-3818/Table_from_batches
branch
from
February 13, 2019 09:02
760accd to
da51b90Compareromainfrancoisforce-pushed
the
ARROW-3818/Table_from_batches
branch
2 times, most recently
from
February 19, 2019 15:39
72ea93a to
53dbf5eCompareromainfrancoisforce-pushed
the
ARROW-3818/Table_from_batches
branch
from
February 26, 2019 08:39
53dbf5e to
c7c5d0fCompareromainfrancois
commented
Mar 6, 2019
ContributorAuthor
Obsolete now, as #3635 was merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://issues.apache.org/jira/browse/ARROW-3818?filter=12344983