## sample_wide()


Generate a wide dataset with many numeric columns.


Usage


``` python
sample_wide(
    n_rows=10,
    n_cols=15,
)
```


## Parameters


`n_rows: int = ``10`  
Number of rows.

`n_cols: int = ``15`  
Number of data columns (plus an id column).


## Returns


`dict[str, list]`  
Column-oriented dict with an `id` column and `metric_001` through `metric_{n_cols:03d}`.


## Examples

``` python
>>> data = sample_wide(5, 8)
>>> len(data)
```

9
