Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrmoulton/interpret-spi-rs
A rust exersise to interpret SPI data in a csv file and plot it
https://github.com/jrmoulton/interpret-spi-rs
Last synced: 6 days ago
JSON representation
A rust exersise to interpret SPI data in a csv file and plot it
- Host: GitHub
- URL: https://github.com/jrmoulton/interpret-spi-rs
- Owner: jrmoulton
- Created: 2022-08-28T07:50:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-29T04:25:18.000Z (over 2 years ago)
- Last Synced: 2025-01-12T01:05:00.792Z (14 days ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 19.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interpret SPI Data in Rust
This repo is a quick exercise to see if I could accomplish the same data processing and results as I do in python with pandas.
The final result is that it took about 10x as many lines of code to accomplish the same thing in rust as I did in python but they each took about the same amount of actual time to write.
The plotting in rust is workable but definitely not as streamlined as matplotlib and the final graph wasn't as smooth.
The source code for the python pandas code in in src/interpret.rs
The plot in rust
![rust plot](images/rust_plot.png)Vs. the plot with matplotlib
![rust plot](images/matplotlib_plot.png)