## sample_large()


Generate a large dataset for pagination testing.


Usage


``` python
sample_large(n=200)
```


## Parameters


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


## Returns


`dict[str, list]`  
Column-oriented dict with id, name, department, salary, years, and active columns.


## Examples

``` python
>>> data = sample_large(50)
>>> len(data["id"])
```

50
