## sample_types()


Generate a dataset that exercises many Python types.


Usage


``` python
sample_types()
```


## Returns


`dict[str, list]`  
Six rows with int, float, bool, string, None, and large-number columns.


## Examples

``` python
>>> data = sample_types()
>>> len(data["integer"])
```

6
