-
Notifications
You must be signed in to change notification settings - Fork 1
Polars: Index page #298
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
Merged
Polars: Index page #298
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| (polars)= | ||
| # Polars | ||
|
|
||
| ```{div} | ||
| :style: "float: right; margin-left: 0.5em" | ||
| [{w=180px}][Polars] | ||
| ``` | ||
| ```{div} .clearfix | ||
| ``` | ||
|
|
||
| :::{rubric} About | ||
| ::: | ||
|
|
||
| [Polars] is a high‑performance DataFrames library with interfaces for | ||
| Rust, Python, Node.js, and R, plus a SQL context. It is powered by a | ||
| multithreaded, vectorized query engine and written in Rust. | ||
|
|
||
| - **Fast:** Written from scratch in Rust and with performance in mind, | ||
| designed close to the machine, and without external dependencies. | ||
|
|
||
| - **I/O:** First class support for all common data storage layers: local, | ||
| cloud storage & databases. | ||
|
|
||
| - **Intuitive API:** Write your queries the way they were intended. Polars, | ||
| internally, will determine the most efficient way to execute using its query | ||
| optimizer. Polars' expressions are intuitive and empower you to write | ||
| readable and performant code at the same time. | ||
|
|
||
| - **Out of Core:** The streaming API allows you to process your results without | ||
| requiring all your data to be in memory at the same time. | ||
|
|
||
| - **Parallel:** Polars' multi-threaded query engine utilizes the power of your | ||
| machine by dividing the workload among the available CPU cores without any | ||
| additional configuration. | ||
|
|
||
| - **Vectorized Query Engine:** Uses [Apache Arrow], a columnar data format, to | ||
| process your queries in a vectorized manner and SIMD to optimize CPU usage. | ||
| This enables cache-coherent algorithms and high performance on modern processors. | ||
|
|
||
| - **Open Source:** Polars is and always will be open source. Driven by an active | ||
| community of developers. Everyone is encouraged to add new features and contribute. | ||
| It is free to use under the MIT license. | ||
|
|
||
| :::{rubric} Data formats | ||
| ::: | ||
|
|
||
| Polars supports reading and writing to many common data formats. | ||
| This allows you to easily integrate Polars into your existing data stack. | ||
|
|
||
| - Text: CSV, JSON | ||
| - Binary: Parquet, Delta Lake, Avro, Excel | ||
| - IPC: Feather, Arrow IPC | ||
| - Databases: MySQL, PostgreSQL, SQLite, Redshift, SQL Server, etc. (via ConnectorX) | ||
| - Cloud storage: Amazon S3, Azure Blob/ADLS (via fsspec‑compatible backends) | ||
|
|
||
| :::{rubric} Learn | ||
| ::: | ||
| - [Polars code examples] | ||
|
|
||
|
|
||
| [Apache Arrow]: https://arrow.apache.org/ | ||
| [Polars]: https://pola.rs/ | ||
| [Polars code examples]: https://github.com/crate/cratedb-examples/tree/main/by-dataframe/polars | ||
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.
Uh oh!
There was an error while loading. Please reload this page.