https://github.com/wilcotomassen/lorem-datum-core
Java based data generator for data simulation
https://github.com/wilcotomassen/lorem-datum-core
data dataset generator java lorem-ipsum simulated-data
Last synced: 5 months ago
JSON representation
Java based data generator for data simulation
- Host: GitHub
- URL: https://github.com/wilcotomassen/lorem-datum-core
- Owner: wilcotomassen
- License: mit
- Created: 2018-05-10T19:16:20.000Z (about 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-06-17T19:10:33.000Z (almost 8 years ago)
- Last Synced: 2025-07-31T18:00:18.345Z (10 months ago)
- Topics: data, dataset, generator, java, lorem-ipsum, simulated-data
- Language: Java
- Homepage:
- Size: 183 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lorem datum
Lorem datum is a pseudo-random generator based data generation suite, which can
be used to simulate some real-life data. It provides some nice features that make
it easier than rolling your own data generation functions.
**Build status**
## Features
* Set the amount of variation between consecutive data points
* Set the probability of NA values (or disallow NA values)
* Set hard lower/upper bounds for generated values
* Ability to provide the PRNG seed, so that data generation is repeatable
* Use the date/time generator to create time series
## Available data generators
* Temporal:
* Date/time (non-random, using java.time.LocalDateTime)
* Categorical:
* Boolean
* Categorical (any Object)
* Numerical:
* Integer
* Float
* Double
* Long
## Documentation
Documentation (javadocs) can found on the [GitHub Pages website](https://wilcotomassen.github.io/lorem-datum-core/)
## Testing
Unit tests are provided in the (/src/test) directory, using [TestNG](http://testng.org).
They follow the same package structure and all the code on the generators should
be sufficiently covered with tests to guarantee proper workings.
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md)
file for details