## sample_products()


Generate a product catalog dataset.


Usage


``` python
sample_products(n=15)
```


## Parameters


`n: int = ``15`  
Number of rows.


## Returns


`dict[str, list]`  
Column-oriented dict with product, category, price, stock, rating, and in_stock columns.


## Examples

``` python
>>> data = sample_products(5)
>>> len(data["product"])
```

5
