ARROW-825: [Python] Rename pyarrow.from_pylist to pyarrow.array, test on tuples#552
Closed
wesm wants to merge 3 commits intoapache:masterfrom
Closed
ARROW-825: [Python] Rename pyarrow.from_pylist to pyarrow.array, test on tuples#552wesm wants to merge 3 commits intoapache:masterfrom
wesm wants to merge 3 commits intoapache:masterfrom
Conversation
Change-Id: I8771d38567fd361d226927b032bcf7a4d9f976f2
Change-Id: I4d72b4e53131c1c514ac2a908a1a437a807908a3
Change-Id: I562370cf2fd0cc5dc8a4dc0986e8ce999aba3b16
Member
Author
|
Rebased |
xhochy
reviewed
Apr 16, 2017
Member
xhochy
left a comment
There was a problem hiding this comment.
Now that this method has a much more general name, I would expect it to also be able to take NumPy Arrays and convert them in a fast path.
Member
Author
|
Agreed. Let's open a new JIRA for this? The existing NumPy import assumes the pandas memory model / null encoding, but here I think we would want to import as-is without any null assumptions |
Member
Author
Member
Author
|
+1 |
jeffknupp
pushed a commit
to jeffknupp/arrow
that referenced
this pull request
Jun 3, 2017
… on tuples The idea is to make this function more semantically analogous to `numpy.array` -- convert to native data structure with optional explicit type. Author: Wes McKinney <wes.mckinney@twosigma.com> Closes apache#552 from wesm/ARROW-825 and squashes the following commits: 5d69c70 [Wes McKinney] Update test_jemalloc after ARROW-830 c25fdee [Wes McKinney] Update docstring 3a284b7 [Wes McKinney] Rename pyarrow.from_pylist to pyarrow.array, test on tuples
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 free
to 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.
The idea is to make this function more semantically analogous to
numpy.array-- convert to native data structure with optional explicit type.