Repository Details
Shared by![navbar_avatar](https://img.hellogithub.com/avatar/oTtM-5_ebfppwwUHOebKp8KT7EMc.png)
![navbar_avatar](https://img.hellogithub.com/avatar/oTtM-5_ebfppwwUHOebKp8KT7EMc.png)
![repo_avatar](https://img.hellogithub.com/github_avatar/83768144.png)
HelloGitHub Rating
0 ratings
Claim
Discuss
Collect
Share
31.7k
Stars
No
Chinese
Rust
Language
Yes
Active
537
Contributors
2k
Issues
Yes
Organization
rs-0.46.0
Latest
2k
Forks
None
License
More
![polars image](https://img.hellogithub.com/i/v9fP7EBztGDjQxq.png)
多线程、类 Pandas 的数据处理库。底层采用 Apache Arrow 从而带来了更高效的数据处理性能、占用内存更少、处理速度更快,再加上简单易用的 API,让你在处理大数据集(50GB)时,更加游刃有余。支持 Rust、Python 等语言,值得一试
```python
import polars as pl
q = (
pl.scan_csv("iris.csv")
.filter(pl.col("sepal_length") > 5)
.groupby("species")
.agg(pl.all().sum())
)
df = q.collect()
```
Comments
Rating:
No comments yet