|
1 |
| -# Rust EDA |
| 1 | +# 📚 Rust Data Analysis |
2 | 2 |
|
3 |
| -<div align="center"> |
| 3 | +[](https://github.com/wiseaidev) |
| 4 | +[](https://opensource.org/licenses/Apache-2.0) |
| 5 | +[](https://www.rust-lang.org/) |
| 6 | +[](https://www.latex-project.org/) |
| 7 | +[](https://jupyter.org/) |
| 8 | +[](https://github.com/wiseaidev/rust-data-analysis/graphs/contributors/) |
| 9 | +[](https://github.com/wiseaidev/rust-data-analysis/issues/) |
4 | 10 |
|
5 |
| - |
6 |
| - |
| 11 | +Welcome to the Rust Data Analysis repository! This collection of Jupyter notebooks provides a comprehensive exploration of data analysis using Rust. Powered by a Rust kernel, these notebooks allow you to dive deep into the realm of data analysis, leveraging the capabilities of the Rust programming language. With the help of various Rust libraries, such as ndarray, plotters, and more, you'll be able to extract valuable insights from different datasets with ease. |
7 | 12 |
|
8 |
| -</div> |
| 13 | +## 📝 Table of Contents |
9 | 14 |
|
10 |
| -This repository is a collection of Jupyter notebooks, all powered by a Rust kernel. With these notebooks, you'll be able to dive deep into the realm of data analysis with Rust, exploring different datasets and extracting insights with ease using different Rust libraries such as ndarray, plotters, and much more. |
| 15 | +- [Installation](#-installation) |
| 16 | +- [Tutorials](#-tutorials) |
| 17 | +- [Contributing](#-contributing) |
| 18 | +- [Licence](#-licence) |
| 19 | +- [Star History](#-star-history) |
11 | 20 |
|
12 |
| -## Steps |
| 21 | +## 🚀 Installation |
13 | 22 |
|
14 |
| -- Install a Rust toolchain (e.g. nightly): |
| 23 | +To use the notebooks in this repository, you need to set up your environment. Follow these steps to get started: |
15 | 24 |
|
16 |
| -```sh |
17 |
| -curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly |
18 |
| -``` |
| 25 | +1. Clone the repository to your local machine: |
19 | 26 |
|
20 |
| -- Install [`Jupyter`](https://jupyter.org/install). |
| 27 | + ```sh |
| 28 | + git clone https://github.com/wiseaidev/rust-data-analysis.git |
| 29 | + ``` |
21 | 30 |
|
22 |
| -- Install [`evcxr_jupyter`](https://github.com/evcxr/evcxr/blob/main/evcxr_jupyter/README.md) |
| 31 | +1. Install the required dependencies and libraries. Make sure you have [`Rust`](https://rustup.rs/), [`Jupyter Notebook`](https://jupyter.org/install), and [`evcxr_jupyter`](https://github.com/evcxr/evcxr/blob/main/evcxr_jupyter/README.md) installed on your system. |
23 | 32 |
|
24 |
| -```sh |
25 |
| -cargo install evcxr_jupyter |
26 |
| -evcxr_jupyter --install |
27 |
| -``` |
| 33 | + ```sh |
| 34 | + # Install a Rust toolchain (e.g. nightly): |
| 35 | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly |
28 | 36 |
|
29 |
| -- Run Jupyter: |
| 37 | + # Install Jupyter Notebook |
| 38 | + pip install notebook |
30 | 39 |
|
31 |
| -```sh |
32 |
| -jupyter notebook |
33 |
| -``` |
| 40 | + # Install evcxr_jupyter |
| 41 | + cargo install evcxr_jupyter |
| 42 | + evcxr_jupyter --install |
| 43 | + ``` |
34 | 44 |
|
35 |
| -## Resources |
| 45 | +1. Navigate to the cloned repository: |
36 | 46 |
|
37 |
| -I have written a series of articles titled: |
| 47 | + ```sh |
| 48 | + cd rust-data-analysis |
| 49 | + ``` |
38 | 50 |
|
39 |
| -1. [Rust: The Next Big Thing in Data Science](https://towardsdatascience.com/rust-the-next-big-thing-in-data-science-319a03305883?source): In this article, you will delve into the exciting world of Rust libraries for exploratory data analysis on the famed iris dataset. You can open up [this notebook](./1-iris-data-analysis-rust.ipynb) associated with this article to follow along. |
| 51 | +1. Start Jupyter Notebook: |
40 | 52 |
|
41 |
| -1. [The Ultimate Ndarray Handbook: Mastering the Art of Scientific Computing with Rust](https://towardsdatascience.com/the-ultimate-ndarray-handbook-mastering-the-art-of-scientific-computing-with-rust-ef5ab767212a): This article is an overview of different Rust’s built-in data structures and a deep dive into the Ndarray library. You can open up [this notebook](./2-ndarray-tutorial.ipynb) associated with this article to follow along. |
| 53 | + ```sh |
| 54 | + jupyter notebook |
| 55 | + ``` |
42 | 56 |
|
43 |
| -1. [Rust Polars: Unlocking High-Performance Data Analysis — Part 1](https://towardsdatascience.com/rust-polars-unlocking-high-performance-data-analysis-part-1-ce42af370ece). This article is part 1 of exploring the Polars library. You can open up [this notebook](./3-polars-tutorial-part-1.ipynb) associated with this article to follow along. |
| 57 | +1. Access the notebooks in your web browser by clicking on the notebook file you want to explore. |
44 | 58 |
|
45 |
| -1. [Rust Polars: Unlocking High-Performance Data Analysis — Part 2](https://towardsdatascience.com/rust-polars-unlocking-high-performance-data-analysis-part-2-7c58a3cb7a1f). This article is part 2 of exploring the Polars library. You can open up [this notebook](./4-polars-tutorial-part-2.ipynb) associated with this article to follow along. |
| 59 | +## 📌 Tutorials |
46 | 60 |
|
47 |
| -## Star History |
| 61 | +| ID | Article | Thumbnail | Description | Open on GitHub | Launch on Binder | |
| 62 | +|----|---------------|-----------|-------------|----------------|------------------| |
| 63 | +| 1 | [Rust: The Next Big Thing in Data Science](https://towardsdatascience.com/rust-the-next-big-thing-in-data-science-319a03305883) |  | A Contextual Guide for Data Scientists and Analysts. | [GitHub](./1-iris-data-analysis-rust.ipynb) | [](https://mybinder.org/v2/gh/wiseaidev/rust-data-analysis/main?filepath=1-iris-data-analysis-rust.ipynb) | |
| 64 | +| 2 | [The Ultimate Ndarray Handbook: Mastering the Art of Scientific Computing with Rust](https://towardsdatascience.com/the-ultimate-ndarray-handbook-mastering-the-art-of-scientific-computing-with-rust-ef5ab767212a) |  | This article is an overview of different Rust’s built-in data structures and a deep dive into the Ndarray library. | [GitHub](./2-ndarray-tutorial.ipynb) | [](https://mybinder.org/v2/gh/wiseaidev/rust-data-analysis/main?filepath=2-ndarray-tutorial.ipynb) | |
| 65 | +| 3 | [Rust Polars: Unlocking High-Performance Data Analysis — Part 1](https://towardsdatascience.com/rust-polars-unlocking-high-performance-data-analysis-part-1-ce42af370ece) |  | This article is part 1 of exploring the Polars library. | [GitHub](./3-polars-tutorial-part-1.ipynb) | [](https://mybinder.org/v2/gh/wiseaidev/rust-data-analysis/main?filepath=3-polars-tutorial-part-1.ipynb) | |
| 66 | +| 4 | [Rust Polars: Unlocking High-Performance Data Analysis — Part 2](https://towardsdatascience.com/rust-polars-unlocking-high-performance-data-analysis-part-1-ce42af370ece) |  | This article is part 2 of exploring the Polars library. | [GitHub](./4-polars-tutorial-part-2.ipynb) | [](https://mybinder.org/v2/gh/wiseaidev/rust-data-analysis/main?filepath=4-polars-tutorial-part-2.ipynb) | |
| 67 | +| 5 | TODO | TODO | This article is a deep dive into probability theory with Rust. | [GitHub](./5-probability-theory-tutorial.ipynb) | [](https://mybinder.org/v2/gh/wiseaidev/rust-data-analysis/main?filepath=5-probability-theory-tutorial.ipynb) | |
48 | 68 |
|
49 |
| -[](https://star-history.com/#wiseaidev/rust-data-analysis&Date) |
| 69 | +## 🤝 Contributing |
| 70 | + |
| 71 | +We welcome contributions to enhance the Rust Data Analysis repository! To contribute, please follow these CONTRIBUING.md file guidelines. Thank you for helping make this project better! |
| 72 | + |
| 73 | +## 📜 License |
| 74 | + |
| 75 | +This project is licensed under the [Apache License 2.0](https://opensource.org/licenses/Apache-2.0). For more details, You can refer to the [LICENSE](LICENSE) file. |
| 76 | + |
| 77 | +## 📈 Star History |
| 78 | + |
| 79 | +[](https://star-history.com/#wiseaidev/rust-data-analysis&Date) |
0 commit comments