## Installation

### Via npm

```bash
npm install als-statistics
```

### Browser Usage

Include the script in your HTML:

```html
<script src="node_modules/als-statistics/statistics.js"></script>
<script>
  const { newColumn } = Statistics;
  const col = newColumn([1, 2, 3]);
  console.log(col.mean); // 2
</script>
```
