美文网首页
Rust DataFrame library —— polars

Rust DataFrame library —— polars

作者: 昵称违法 | 来源:发表于2021-02-21 20:33 被阅读0次

包的介绍:
Polars is a DataFrame library for Rust. It is based on Apache Arrows memory model. This means that operations on Polars array's (called Series or ChunkedArray<T> {if the type T is known}) are optimally aligned cache friendly operations and SIMD. Sadly, Apache Arrow needs nightly Rust, which means that Polars cannot run on stable.

Polars supports an eager and a lazy api. The eager api is similar to pandas, the lazy api is similar to Spark.

github地址:
https://github.com/ritchie46/polars

相关文章

网友评论

      本文标题:Rust DataFrame library —— polars

      本文链接:https://www.haomeiwen.com/subject/yrtcfltx.html