| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Rust command-line tool to generate random (artificial) data. Data is saved as a CSV file. You can specify the number of rows, the types of columns (integer, float, word, name, phone), and the output file name. This is useful for generating mock data for testing, demos, or data science projects.
Date: 6 October 2025
Oliver Bonham-Carter
Email: Obonhamcarter at allegheny.edu
Install Rust (if not already installed):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shClone or download this repository and navigate to the project directory:
cd /path/to/make_dataBuild the project:
cargo build --releaseGenerate a CSV file with 100 rows, where the first column is an integer, the second is a float, the third is a random word, the fourth is a name, and the fifth is a phone number:
cargo run --release -- --rows 100 --columns int,float,word,name,phone --output mydata.csvThis will create mydata.csv in the project directory.
Generate a CSV file with 50 rows and 5 columns, all integers:
cargo run --release -- --rows 50 --columns int,int,int,int,int --output all_ints.csvGenerate a CSV file with 50 rows and 5 columns, all floats:
cargo run --release -- --rows 50 --columns float,float,float,float,float --output all_floats.csvThis project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! If you have ideas for improvements or want to add more features, feel free to open an issue or submit a pull request.
Check back often to see the evolution of the project! This project is a work-in-progress. Updates will come periodically.
If you would like to contribute to this project, please do! For instance, if you see some low-hanging fruit or tasks that could add value to the project, I would love to have your insight.
Otherwise, please create an issue for bugs or errors. Since I am a teaching faculty member at Allegheny College, I may not have all the time necessary to quickly fix bugs. I welcome the Open Source Community to further the development of this project. Much thanks in advance.
If you appreciate this project, please consider clicking the project's Star button. :-)
| Back | FazBrowse Home | New Git URL |