dummy-dataset

Solid

Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Use when creating test data, building mock datasets, or generating sample data for development and demos.

Data & Documents 17,303 stars 1779 forks Updated 6 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Dummy Dataset Generation Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Creates executable scripts or direct data files for immediate use. **Use when:** Creating test data, generating sample datasets, building realistic mock data for development, or populating test environments. **Arguments:** - `$PRODUCT`: The product or system name - `$DATASET_TYPE`: Type of data (e.g., customer feedback, transactions, user profiles) - `$ROWS`: Number of rows to generate (default: 100) - `$COLUMNS`: Specific columns or fields to include - `$FORMAT`: Output format (CSV, JSON, SQL, Python script) - `$CONSTRAINTS`: Additional constraints or business rules ## Step-by-Step Process 1. **Identify dataset type** - Understand the data domain 2. **Define column specifications** - Names, data types, and value ranges 3. **Determine row count** - How many sample records needed 4. **Select output format** - CSV, JSON, SQL INSERT, or Python script 5. **Apply realistic patterns** - Ensure data looks authentic and valid 6. **Add business constraints** - Respect business logic and relationships 7. **Generate or script data** - Create executable output 8. **Validate output** - Ensure data quality and completeness ## Template: Python Script Output ```python import csv import json from datetime import datetime, timedelta import random # Configuration ROWS = $ROWS FILENAME = "$DATASET_TYPE.csv" # Column definiti...

Details

Author
phuryn
Repository
phuryn/pm-skills
Created
3 months ago
Last Updated
6 days ago
Language
N/A
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category