Skip to content
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

feat: add support for 'array' datatype #224

Merged
merged 3 commits into from
Jun 12, 2024
Merged

feat: add support for 'array' datatype #224

merged 3 commits into from
Jun 12, 2024

Conversation

universalmind303
Copy link
Collaborator

example usage

const s = pl.Series(
  "a",
  [
    [1, 2],
    [3, 4],
  ],
  pl.FixedSizeList(pl.Int32, 2),
);

shape: (2,)
Series: 'a' [array[i32, 2]]
[
	[1, 2]
	[3, 4]
]

@universalmind303 universalmind303 requested a review from Bidek56 June 12, 2024 03:51
@Bidek56
Copy link
Collaborator

Bidek56 commented Jun 12, 2024

@universalmind303 Do we need to add any tests or docs for this feature? thx

@universalmind303 universalmind303 merged commit 0707fb9 into main Jun 12, 2024
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants