-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preserve Complex Data Types for to_csv #61157
Open
Jaspvr
wants to merge
17
commits into
pandas-dev:main
Choose a base branch
from
IsaacNorthrop:csvFunc
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+156
−1
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
4489a35
dummy test_csv added
Jaspvr b44af37
Basic test
Jaspvr 7bffeb6
Failing test
Jaspvr f0d17ae
Add preserve complex to to_csv
Jaspvr 966c104
Change csvs class to include parameter
Jaspvr 5f6b5f6
Add functionality (still has issues) of preserve complex
Jaspvr 4f78610
Remove pandas-env from version control
Jaspvr 3fd0248
Update
Jaspvr 4cf2399
Add param to generic to csv
Jaspvr f03ff7c
To_csv works, need to implement read_csv
Jaspvr 2cac1bb
Passing test using both to_csv and read_csv
Jaspvr 798c1f2
Clean up
Jaspvr 36a26a9
Lint
Jaspvr 28f4051
Add tests to existing test file, test_to_csv.py
Jaspvr a012f40
Move tests from pytest to original test file
Jaspvr cc07c77
Lint and parameter description
Jaspvr f422c10
Fix ci issue
Jaspvr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import tempfile | ||
|
||
import numpy as np | ||
|
||
import pandas as pd | ||
|
||
|
||
def test_preserve_numpy_arrays_in_csv(): | ||
print("\nRunning: test_preserve_numpy_arrays_in_csv") | ||
df = pd.DataFrame({ | ||
"id": [1, 2], | ||
"embedding": [ | ||
np.array([0.1, 0.2, 0.3]), | ||
np.array([0.4, 0.5, 0.6]), | ||
], | ||
}) | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".csv") as tmp: | ||
path = tmp.name | ||
df.to_csv(path, index=False, preserve_complex=True) | ||
df_loaded = pd.read_csv(path, preserve_complex=True) | ||
|
||
assert isinstance( | ||
df_loaded["embedding"][0], np.ndarray | ||
), "Test Failed: The CSV did not preserve embeddings as NumPy arrays!" | ||
|
||
print("PASS: test_preserve_numpy_arrays_in_csv") | ||
|
||
|
||
def test_preserve_numpy_arrays_in_csv_empty_dataframe(): | ||
print("\nRunning: test_preserve_numpy_arrays_in_csv_empty_dataframe") | ||
df = pd.DataFrame({"embedding": []}) | ||
expected = "embedding\n" | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".csv") as tmp: | ||
path = tmp.name | ||
df.to_csv(path, index=False, preserve_complex=True) | ||
with open(path, encoding="utf-8") as f: | ||
result = f.read() | ||
|
||
msg = ( | ||
f"CSV output mismatch for empty DataFrame.\n" | ||
f"Got:\n{result}\nExpected:\n{expected}" | ||
) | ||
assert result == expected, msg | ||
print("PASS: test_preserve_numpy_arrays_in_csv_empty_dataframe") | ||
|
||
|
||
def test_preserve_numpy_arrays_in_csv_mixed_dtypes(): | ||
print("\nRunning: test_preserve_numpy_arrays_in_csv_mixed_dtypes") | ||
df = pd.DataFrame({ | ||
"id": [101, 102], | ||
"name": ["alice", "bob"], | ||
"scores": [ | ||
np.array([95.5, 88.0]), | ||
np.array([76.0, 90.5]), | ||
], | ||
"age": [25, 30], | ||
}) | ||
|
||
with tempfile.NamedTemporaryFile(suffix=".csv") as tmp: | ||
path = tmp.name | ||
df.to_csv(path, index=False, preserve_complex=True) | ||
df_loaded = pd.read_csv(path, preserve_complex=True) | ||
|
||
err_scores = "Failed: 'scores' column not deserialized as np.ndarray." | ||
assert isinstance(df_loaded["scores"][0], np.ndarray), err_scores | ||
assert df_loaded["id"].dtype == np.int64, ( | ||
"Failed: 'id' should still be int." | ||
) | ||
assert df_loaded["name"].dtype == object, ( | ||
"Failed: 'name' should still be object/string." | ||
) | ||
assert df_loaded["age"].dtype == np.int64, ( | ||
"Failed: 'age' should still be int." | ||
) | ||
|
||
print("PASS: test_preserve_numpy_arrays_in_csv_mixed_dtypes") | ||
|
||
|
||
if __name__ == "__main__": | ||
test_preserve_numpy_arrays_in_csv() | ||
test_preserve_numpy_arrays_in_csv_empty_dataframe() | ||
test_preserve_numpy_arrays_in_csv_mixed_dtypes() | ||
print("\nDone.") |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
id,embedding | ||
1,[0.1 0.2 0.3] | ||
2,[0.4 0.5 0.6] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
id,embedding | ||
1,"[0.1, 0.2, 0.3]" | ||
2,"[0.4, 0.5, 0.6]" |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As commented in the issue, you can use the
dtype
argument inread_csv
to read complex values already. I'm negative on this approach.