An open API service indexing awesome lists of open source software.

https://github.com/intake/pandas-decimal

decimal extension for pandas
https://github.com/intake/pandas-decimal

Last synced: 9 months ago
JSON representation

decimal extension for pandas

Awesome Lists containing this project

README

          

# pandas-decimal

Extension array for pandas implementing fixed-precision decimal numbers.

Data is stored internally as integers and a dtype encoding the number of decimal
places. Operations are mostly implemented as integer arithmetic (i.e., fast!)
and always rounded to the required precision, meaning no floating point
quirks.

### Install

```bash
pip install pandas-decimal
```