Categories
Data analysis & Visualization

The Big Three of Plotting in Rust: Line, Scatter, and Bar

Numbers can be boring, but they don’t have to be. They’re beautiful when they start to look like something. Details create the big picture, and to build that picture, we need plots. Plots are still essential tools in data science and anything involving data. In this article, I’ve prepared implementations of the three most commonly […]

Categories
Programming

Understanding Ownership in Rust and Its Role in Data Safety

Rust time again! This time, not so much about data science but about Rust completely. Today, we’ll be diving into the ownership model. This little concept ensures data safety, prevents memory corruption, and avoids bugs related to concurrency, all while delivering top-tier performance. But what exactly is it? That’s still a mystery for many people […]